From c7a3af96f7f4d15d74ed58ec75b57a9c4de49256 Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sun, 11 Aug 2024 20:44:11 -0400 Subject: [PATCH] Expose the right port. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 78c7666..ca828ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,7 @@ RUN bun install --frozen-lockfile COPY ./src ./src COPY ./posts ./posts +EXPOSE 3000 + USER bun CMD [ "bun", "src/index.tsx" ]