eve.dockerfile 167 B

12345678910111213
  1. FROM aleksxp/docker-eve-python:legacy
  2. ADD ./ /eve
  3. WORKDIR /eve
  4. COPY . .
  5. RUN pip install -r requirements.txt
  6. EXPOSE 8080
  7. CMD gunicorn app:app -c gunicorn_conf.py