D3MI4N's picture
first working version
5ada353
raw
history blame contribute delete
133 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]