gpt / Dockerfile
titoff's picture
Create Dockerfile
61b8a53 verified
Raw
History Blame Contribute Delete
122 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD python app.py