diff --git a/Dockerfile b/Dockerfile index b2ea4df..8a01600 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,6 @@ RUN pip install poetry && poetry config virtualenvs.create false && poetry insta COPY . /app # Expose the port -EXPOSE 8000 +EXPOSE 8080 CMD ["python", "server.py"] diff --git a/settings.py b/settings.py index 19a95e6..a006346 100644 --- a/settings.py +++ b/settings.py @@ -1,6 +1,6 @@ from os import environ -PORT = 8000 +PORT = 8080 AUTH_URL = environ.get("AUTH_URL") or "https://auth.discours.io/graphql" STORJ_ACCESS_KEY = environ.get("STORJ_ACCESS_KEY") STORJ_SECRET_KEY = environ.get("STORJ_SECRET_KEY")