Created
April 1, 2019 08:43
-
-
Save chrisvoncsefalvay/1feb96e06ff686cdcf4b498209da8c8e to your computer and use it in GitHub Desktop.
EBOV docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.10 | |
LABEL maintainer="Chris von Csefalvay <[email protected]>" | |
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