We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296d611 commit 6fe711aCopy full SHA for 6fe711a
1 file changed
Dockerfile
@@ -12,10 +12,10 @@ RUN apt-get update && apt-get install -y \
12
WORKDIR /app
13
14
# Copy package files
15
-COPY package*.json ./
+COPY package.json ./
16
17
-# Install dependencies
18
-RUN npm ci --omit=dev --no-audit --no-fund && \
+# Install dependencies (using install instead of ci for flexibility)
+RUN npm install --omit=dev --no-audit --no-fund && \
19
npm cache clean --force
20
21
# Copy source code
0 commit comments