JairoDanielMT's picture
Create Dockerfile
94ee2ab verified
raw
history blame contribute delete
No virus
185 Bytes
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "app.py"]