Zen-4011's picture
Upload 7 files
b83b539 verified
Raw
History Blame Contribute Delete
138 Bytes
FROM python:3.9
WORKDIR /code
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]