diff --git a/Dockerfile b/Dockerfile index 63e07f7..30cf23d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,5 +17,7 @@ RUN pnpm run build FROM base COPY --from=prod-deps /app/node_modules /app/node_modules COPY --from=build /app/dist /app/dist -EXPOSE 8000 -CMD [ "pnpm", "start" ] \ No newline at end of file +ENV HOST=0.0.0.0 +ENV PORT=4321 +EXPOSE 4321 +CMD node ./dist/server/entry.mjs \ No newline at end of file