port=8080
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
FROM python:slim
|
FROM python:slim
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 8080
|
||||||
# ADD nginx.conf.sigil ./
|
# ADD nginx.conf.sigil ./
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN apt-get update && apt-get install -y build-essential git
|
RUN apt-get update && apt-get install -y build-essential git
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
from os import environ
|
from os import environ
|
||||||
|
|
||||||
PORT = 80
|
PORT = 8080
|
||||||
|
|
||||||
DB_URL = (
|
DB_URL = (
|
||||||
environ.get("DATABASE_URL") or environ.get("DB_URL") or
|
environ.get("DATABASE_URL") or environ.get("DB_URL") or
|
||||||
|
|||||||
Reference in New Issue
Block a user