mirror of
https://github.com/karpathy/nanochat.git
synced 2026-05-07 16:30:11 +00:00
10 lines
146 B
Docker
10 lines
146 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY README.md /app/README.md
|
|
|
|
EXPOSE 8002
|
|
|
|
CMD ["python", "-m", "http.server", "8002", "--bind", "0.0.0.0"]
|