From ea9ae016d706b03793a1f4218c9d407ed45e26a4 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Wed, 18 Feb 2026 22:42:38 -0600 Subject: [PATCH] fix: add env --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index f7ac153..f631252 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,5 +25,8 @@ COPY --from=build /app/dist /app/dist LABEL version="2.14.0" LABEL description="Astro based personal website" +ENV HOST=0.0.0.0 +ENV PORT=4321 + EXPOSE $PORT CMD ["node", "./dist/server/entry.mjs"]