Remove port from dockerfile

This commit is contained in:
Lily Rose 2025-07-17 19:16:08 +10:00
parent 6602aec191
commit ffebff2fce

View file

@ -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"]