port=8080

This commit is contained in:
Tony Rewin 2023-10-10 01:09:15 +03:00
parent 14fa314e2a
commit 0eed70c102
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
from os import environ
PORT = 80
PORT = 8080
DB_URL = (
environ.get("DATABASE_URL") or environ.get("DB_URL") or