Updating Python requirements file

This commit is contained in:
Scott Idem
2023-09-08 17:08:45 -04:00
parent 8bf5b49552
commit 42b6e8ed08
5 changed files with 58 additions and 55 deletions

View File

@@ -7,4 +7,11 @@ WORKDIR /srv/aether_app
COPY conf/aether_flask_requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN pip freeze > /aether_flask_requirements_current.txt
# RUN pip freeze > /logs/aether_flask_requirements_current.txt
RUN pip freeze > /tmp/aether_flask_requirements_current.txt
# CMD ["pip", "freeze > /logs/aether_flask_requirements_current.txt"]
# CMD ["pip", "freeze > /tmp/aether_flask_requirements_current.txt"]
CMD ["gunicorn", "--conf", "/conf/gunicorn_flask_conf.py"]