Adding external port in Dockerfile instead :D

This commit is contained in:
Julien Lengrand-Lambert
2022-11-07 16:00:04 +01:00
parent 31c8dd7cae
commit bf9fe63bf6
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ FROM python:3.9-slim
COPY app/ /app
COPY requirements.txt /app/requirements.txt
EXPOSE 5000
EXPOSE 8080:8080
WORKDIR /app
RUN pip install -r requirements.txt

View File

@@ -8,7 +8,7 @@ processes = []
[env]
[experimental]
allowed_public_ports = [8080]
allowed_public_ports = []
auto_rollback = true
[[services]]