Arbazkhan-cs's picture
Upload 11 files
61f1bfd verified
raw
history blame
205 Bytes
FROM python:3.9
WORKDIR /Flask_APP
COPY ./requirements.txt /FLASK_APP/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . .
CMD ["python", "/FLASK_APP/app.py"]