aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 194a42a..570c4ad 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,16 +1,16 @@
FROM python:3.8-alpine
MAINTAINER Galen Guyer <galen@galenguyer.com>
-RUN mkdir /opt/demo
+RUN mkdir /app
-ADD requirements.txt /opt/demo
+ADD requirements.txt /app
-WORKDIR /opt/demo
+WORKDIR /app
RUN pip install -r requirements.txt
-ADD . /opt/demo
+ADD . /app
RUN ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
-CMD ["gunicorn", "demo:APP", "--bind=0.0.0.0:8080", "--access-logfile=-"]
+CMD ["gunicorn", "poller:APP", "--bind=0.0.0.0:8080", "--access-logfile=-"]