change flask to use port 80
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-24 18:07:36 -05:00
parent ec31206127
commit cc57dfdb32

View File

@@ -3,4 +3,4 @@ COPY ./app /app
WORKDIR /app WORKDIR /app
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt
ENV FLASK_APP=app.py ENV FLASK_APP=app.py
CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0"] CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0", "--port=80"]