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