We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 387d4f8 + 3883c31 commit 2177fa3Copy full SHA for 2177fa3
2 files changed
.dockerignore
@@ -0,0 +1,10 @@
1
+node_modules
2
+npm-debug.log
3
+.git
4
+.gitignore
5
+logs
6
+data
7
+package-cache
8
+*.md
9
+.env
10
+.env.*
Dockerfile
@@ -8,7 +8,7 @@ RUN apk add --no-cache python3 make g++
# Install app dependencies
COPY package*.json ./
11
-RUN npm install --omit=dev
+RUN npm ci --omit=dev
12
13
# Stage 2: Runtime image (no build tools)
14
FROM node:24-alpine
@@ -28,4 +28,4 @@ ENV APP_VERSION=$VERSION
28
29
# Expose port and define command
30
EXPOSE 3000
31
-CMD ["node", "server.js"]
+CMD ["node", "server.js"]
0 commit comments