From f74c3111c4a1de7704ca7cf043aa7b78529be75d Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Sat, 3 Dec 2016 22:41:47 +0800 Subject: [PATCH] Add Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile 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