diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..247cf08f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.5.1 +MAINTAINER Richard Chien + +COPY *.py ./ +COPY commands commands +COPY requirements.txt requirements.txt + +RUN pip install --upgrade pip +RUN pip install -r requirements.txt + +CMD ['python', 'app.py'] \ No newline at end of file