analyze file and return result

This commit is contained in:
danijoo
2022-11-27 12:10:04 +01:00
parent 233c14ec2d
commit 9ca1f9bced
3 changed files with 51 additions and 7 deletions

View File

@@ -38,6 +38,6 @@ WORKDIR /app
COPY ./requirements.txt .
RUN pip install -r requirements.txt
COPY app.py gunicorn.conf.py ./
COPY app.py gunicorn_conf.py ./
ENTRYPOINT ["gunicorn", "--conf", "gunicorn.conf.py", "--bind", "0.0.0.0:80", "app:app"]
ENTRYPOINT ["gunicorn", "--conf", "gunicorn_conf.py", "--bind", "0.0.0.0:80", "app:app"]