build: change port

This commit is contained in:
Danilo Cesa 2025-07-24 23:51:25 +08:00
parent c72b943e3e
commit 81a909e45d

View File

@ -23,11 +23,11 @@ FROM chef AS runtime
COPY --from=builder /app/target/dx/dx-portfolio/release/web/ /usr/local/app COPY --from=builder /app/target/dx/dx-portfolio/release/web/ /usr/local/app
# set our port and make sure to listen for all connections # set our port and make sure to listen for all connections
ENV PORT=8080 ENV PORT=8180
ENV IP=0.0.0.0 ENV IP=0.0.0.0
# expose the port 8080 # expose the port 8180
EXPOSE 8080 EXPOSE 8180
WORKDIR /usr/local/app WORKDIR /usr/local/app
ENTRYPOINT [ "/usr/local/app/server" ] ENTRYPOINT [ "/usr/local/app/server" ]