port=8080
This commit is contained in:
parent
14fa314e2a
commit
0eed70c102
|
@ -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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from os import environ
|
||||
|
||||
PORT = 80
|
||||
PORT = 8080
|
||||
|
||||
DB_URL = (
|
||||
environ.get("DATABASE_URL") or environ.get("DB_URL") or
|
||||
|
|
Loading…
Reference in New Issue
Block a user