From e39c88a324a7e5bf990e2dfe7c601a5033a1015a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 2 Jan 2025 23:02:45 +0100 Subject: [PATCH] use remove dev pkg instead of omitting them --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b42b304..f65315a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,11 @@ WORKDIR /app COPY --chown=node:node . . ENV NODE_ENV=production -RUN npm ci --omit=dev && \ +RUN npm ci && \ npm run compile && \ + npm prune --production && \ + npm uninstall typescript && \ rm -r src/ tsconfig.json && \ - npm uninstall typescript @types/sqlite3 && \ npm cache clean --force CMD ["dumb-init", "node", "./dist/index.js"]