FROM python:3 LABEL maintainer="Scott Idem " 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"]