microgpt-docker / Dockerfile
kkk2z1's picture
Create Dockerfile
1de0c9f verified
raw
history blame contribute delete
174 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ ./src/
WORKDIR /app/src
CMD ["python", "microgpt.py"]