storage / Dockerfile
mike23415's picture
Create Dockerfile
a892b14 verified
raw
history blame contribute delete
172 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py app.py
CMD ["python", "app.py"]