diff --git a/Dockerfile b/Dockerfile index 3242a5b..9e055cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,8 @@ COPY . . RUN yarn build FROM node:22-alpine -RUN --from=build PORT=80 node /app/.output/server/index.mjs +WORKDIR /app +COPY --from=build /app/.output/ ./ +ENV PORT=80 +CMD ["node", "/app/server/index.mjs"] #COPY --from=build /app/dist /usr/share/nginx/html