From e3f7e8b45cfd9fb627a7a598289b6add21fba320 Mon Sep 17 00:00:00 2001 From: BeauAgst <10343831+BeauAgst@users.noreply.github.com> Date: Fri, 10 Feb 2023 13:55:29 +0000 Subject: [PATCH] Chore: Modifies default exposed port --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 33ef2d95f..cdebe275d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,5 +57,5 @@ RUN apt update && apt install -y \ COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps WORKDIR /ghostfolio/apps/api -EXPOSE 3333 +EXPOSE ${PORT:-3333} CMD [ "yarn", "start:prod" ]