Leri777's picture
Create dockerfile
d953685 verified
raw
history blame
162 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . /app
CMD ["python", "app.py"]