aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2025-01-05 21:29:06 +0000
committerMatthew Lemon <y@yulqen.org>2025-01-05 21:29:06 +0000
commit610e43b39987172e38e0b8b7de869ac5ecc68cad (patch)
tree24d5a19dee783fd2871f41e53505fe1b1e0dafeb /Dockerfile
parent1b08e7c8e35f1be532b5dca377f83662c21943a1 (diff)
Switched to prod settings for staging
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index a07ae5c..a2ab775 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,12 +20,12 @@ ADD . /app
WORKDIR /app
# Make port 8010 available to the world outside this container
-EXPOSE 8010
+EXPOSE 8020
# Define environment variable
-ENV DJANGO_SETTINGS_MODULE=config.settings.local
+ENV DJANGO_SETTINGS_MODULE=config.settings.production
ENV DJANGO_READ_DOT_ENV_FILE=True
-ENV DEBUG=True
+ENV DEBUG=False
RUN uv sync --frozen --no-dev && uv run manage.py collectstatic --noinput