From 94a3c04f33d5a9ca5a2ce1878343c13d3f827fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9A=D1=80=D1=83?= =?UTF-8?q?=D0=B3=D0=BB=D0=B8=D1=86=D0=BA=D0=B8=D0=B9?= Date: Fri, 26 Sep 2025 01:27:01 +0600 Subject: [PATCH] test ssr --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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