diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-03 17:25:27 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-03 17:25:27 +0100 |
commit | bac3aef9205563d27b563270bddf6337b2c0c520 (patch) | |
tree | 1616e14d1bbb64ab033263cb2a34706af574df9f /Dockerfile | |
parent | ebaa58a0b1573e1f43c23f435fc0a63ec5df5b52 (diff) |
Adds missing CMD from Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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"] |