diff --git a/Dockerfile b/Dockerfile index e69de29..f0ba3ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest +MAINTAINER Sean Cusack "seancusack@gmail.com" +RUN apt-get update -y +RUN apt-get install -y python3-pip python3-dev build-essential +COPY . /app +WORKDIR /app +RUN pip install -r requirements.txt +ENTRYPOINT ["python3"] +CMD ["app.py"]