update dockerfile
Brijesh Wawdhane ops@brijesh.dev
Fri, 14 Mar 2025 23:24:08 +0530
1 files changed,
3 insertions(+),
3 deletions(-)
jump to
M
server/Dockerfile
→
server/Dockerfile
@@ -31,8 +31,8 @@
# Copy application code COPY . . -# Build application -RUN pnpm run build +# Build application using TypeScript compiler +RUN npx tsc --project tsconfig.json # Remove development dependencies RUN pnpm prune --prod@@ -46,4 +46,4 @@ COPY --from=build /app /app
# Start the server by default, this can be overwritten at runtime EXPOSE 3000 -CMD [ "pnpm", "run", "start" ] +CMD [ "node", "dist/index.js" ]