From 81a909e45d61a545c81a3254b5cbd665991f62b8 Mon Sep 17 00:00:00 2001 From: Danilo Cesa Date: Thu, 24 Jul 2025 23:51:25 +0800 Subject: [PATCH] build: change port --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2913480..03fcaf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,11 +23,11 @@ FROM chef AS runtime COPY --from=builder /app/target/dx/dx-portfolio/release/web/ /usr/local/app # set our port and make sure to listen for all connections -ENV PORT=8080 +ENV PORT=8180 ENV IP=0.0.0.0 -# expose the port 8080 -EXPOSE 8080 +# expose the port 8180 +EXPOSE 8180 WORKDIR /usr/local/app ENTRYPOINT [ "/usr/local/app/server" ]