1.0.1 release #15

Merged
williamp merged 35 commits from testing into master 2023-03-21 18:10:14 +00:00
21 changed files with 266 additions and 24 deletions
Showing only changes of commit a441b4612a - Show all commits

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", "--port=80"] CMD ["gunicorn", "-b", "0.0.0.0:80", "-w", "4", "app:app"]

View File

@@ -1,6 +1,9 @@
# This file is used by pip to install required python packages # This file is used by pip to install required python packages
# Usage: pip install -r requirements.txt # Usage: pip install -r requirements.txt
# Gunicorn WSGI Server
gunicorn==20.1.0
# Flask Framework # Flask Framework
click==8.1.3 click==8.1.3
Flask==2.2.2 Flask==2.2.2