mirror of
https://github.com/karpathy/nanochat.git
synced 2026-05-09 09:20:04 +00:00
10 lines
148 B
Docker
10 lines
148 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY index.html /app/index.html
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["python", "-m", "http.server", "3000", "--bind", "0.0.0.0"]
|