Skip to content

Instantly share code, notes, and snippets.

@chrisvoncsefalvay
Created April 1, 2019 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisvoncsefalvay/1feb96e06ff686cdcf4b498209da8c8e to your computer and use it in GitHub Desktop.
Save chrisvoncsefalvay/1feb96e06ff686cdcf4b498209da8c8e to your computer and use it in GitHub Desktop.
EBOV docker
FROM ubuntu:18.10
LABEL maintainer="Chris von Csefalvay <chris@chrisvoncsefalvay.com>"
RUN apt-get update
RUN apt-get install -y python3 python3-dev python3-pip
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt
COPY ./ /app
WORKDIR /app
CMD gunicorn --bind 0.0.0.0:80 wsgi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment