Initial commit

This commit is contained in:
Scott Idem
2023-02-22 16:40:16 -05:00
parent d18de5507b
commit cc767aac25
52 changed files with 2588 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3
LABEL maintainer="Scott Idem <scott.idem@oneskyit.com>"
WORKDIR /srv/aether_app
COPY conf/aether_flask_requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
CMD ["gunicorn", "--conf", "/conf/gunicorn_flask_conf.py"]