From 4956cd3a97108f4f2ecad895577c867160727317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 8 Sep 2024 18:19:08 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Do=20not=20add=20`EXPOSE?= =?UTF-8?q?=2080`=20by=20default=20as=20the=20port=20can=20be=20changed=20?= =?UTF-8?q?(#128)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-images/python3.7.dockerfile | 2 -- docker-images/python3.8.dockerfile | 2 -- docker-images/python3.9.dockerfile | 2 -- 3 files changed, 6 deletions(-) diff --git a/docker-images/python3.7.dockerfile b/docker-images/python3.7.dockerfile index 8cf0cbb..cccba94 100644 --- a/docker-images/python3.7.dockerfile +++ b/docker-images/python3.7.dockerfile @@ -21,8 +21,6 @@ WORKDIR /app/ ENV PYTHONPATH=/app -EXPOSE 80 - ENTRYPOINT ["/entrypoint.sh"] # Run the start script, it will check for an /app/prestart.sh script (e.g. for migrations) diff --git a/docker-images/python3.8.dockerfile b/docker-images/python3.8.dockerfile index ae29e7c..0d2d0fc 100644 --- a/docker-images/python3.8.dockerfile +++ b/docker-images/python3.8.dockerfile @@ -21,8 +21,6 @@ WORKDIR /app/ ENV PYTHONPATH=/app -EXPOSE 80 - ENTRYPOINT ["/entrypoint.sh"] # Run the start script, it will check for an /app/prestart.sh script (e.g. for migrations) diff --git a/docker-images/python3.9.dockerfile b/docker-images/python3.9.dockerfile index 563b3d7..ece1216 100644 --- a/docker-images/python3.9.dockerfile +++ b/docker-images/python3.9.dockerfile @@ -21,8 +21,6 @@ WORKDIR /app/ ENV PYTHONPATH=/app -EXPOSE 80 - ENTRYPOINT ["/entrypoint.sh"] # Run the start script, it will check for an /app/prestart.sh script (e.g. for migrations)