summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-06-03 17:25:27 +0100
committerMatthew Lemon <y@yulqen.org>2024-06-03 17:25:27 +0100
commitbac3aef9205563d27b563270bddf6337b2c0c520 (patch)
tree1616e14d1bbb64ab033263cb2a34706af574df9f /Dockerfile
parentebaa58a0b1573e1f43c23f435fc0a63ec5df5b52 (diff)
Adds missing CMD from Dockerfile
Diffstat (limited to '')
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 10eea16..e189190 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,3 +23,6 @@ RUN mkdir -p /app/static/css /app/static/js /app/static/img
# Switch to non-root user
USER 1001
+
+# Start app
+CMD ["gunicorn", "ded.wsgi:application", "--bind", "0.0.0.8000"]