From f726c53c71a9e2bfed383c5d1d90400117508134 Mon Sep 17 00:00:00 2001 From: Mathias Hurler Date: Sun, 30 Aug 2026 11:47:44 +0200 Subject: [PATCH] =?UTF-8?q?Start-Command=20f=C3=BCr=20Production=20hinzuf?= =?UTF-8?q?=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35e9a79..1741aaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,13 +12,7 @@ RUN npm run build FROM base AS runtime COPY --from=build /app/.output ./.output -COPY --from=build /app/node_modules ./node_modules -COPY --from=build /app/scripts ./scripts -COPY --from=build /app/src/db ./src/db -COPY --from=build /app/src/lib ./src/lib COPY package.json ./ ENV NODE_ENV=production EXPOSE 3000 -COPY entrypoint.sh ./ -RUN chmod +x entrypoint.sh -CMD ["./entrypoint.sh"] \ No newline at end of file +CMD ["node", ".output/server/index.mjs"] \ No newline at end of file