From ffebff2fce3d12298911cfe8366756fa0fe43a26 Mon Sep 17 00:00:00 2001 From: Lily Rose Date: Thu, 17 Jul 2025 19:16:08 +1000 Subject: [PATCH] Remove port from dockerfile --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07f7a45..41cc424 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ # Build args -ARG PORT=8080 ARG GLEAM_VERSION=v1.11.1 # Build stage - compile the application @@ -40,10 +39,6 @@ VOLUME /data # Set environment variables ENV GEOFEED_PATH=/data/geofeed.csv -ENV PORT=${PORT} - -# Expose the port the server will run on -EXPOSE ${PORT} # Run the server CMD ["/app/start.sh", "run"]