From 0eed70c102cb79cf06bf94aa182b2353708494f6 Mon Sep 17 00:00:00 2001 From: Tony Rewin Date: Tue, 10 Oct 2023 01:09:15 +0300 Subject: [PATCH] port=8080 --- Dockerfile | 2 +- settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5a931e4e..a80e08b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:slim WORKDIR /app -EXPOSE 80 +EXPOSE 8080 # ADD nginx.conf.sigil ./ COPY requirements.txt . RUN apt-get update && apt-get install -y build-essential git diff --git a/settings.py b/settings.py index 3c1b9155..54897dfa 100644 --- a/settings.py +++ b/settings.py @@ -1,6 +1,6 @@ from os import environ -PORT = 80 +PORT = 8080 DB_URL = ( environ.get("DATABASE_URL") or environ.get("DB_URL") or