aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
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