v3.0.1 update: Gunicorn and og meta tags

This commit is contained in:
2021-11-03 10:59:14 +00:00
parent 6859b75825
commit f0286d7013
6 changed files with 32 additions and 4 deletions

View File

@ -2,4 +2,4 @@ FROM python:3.10-alpine
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python","app.py"]
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]