From c316c046db81379c151acc1fdca47b5629fc198c Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Thu, 8 Aug 2024 22:52:12 -0400 Subject: [PATCH] Set the application to run on 5000 instead of 3000 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d4a349..9bc7616 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,6 @@ COPY ./src ./src COPY ./posts ./posts USER bun -EXPOSE 3000 +EXPOSE 5000 CMD [ "bun", "src/index.tsx" ]