MIA / Dockerfile
SharryOG's picture
Update Dockerfile
a501fc8 verified
raw
history blame
No virus
174 Bytes
FROM python:3.11
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
EXPOSE 5000
ENV FLASK_APP=app.py
CMD ["flask", "run", "--host", "0.0.0.0"]