choice / Dockerfile
Asqwehvg's picture
Create Dockerfile
163a12a verified
raw
history blame contribute delete
165 Bytes
# Dockerfile
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]