Skip to content

Commit 7012b1c

Browse files
committed
Fix: npm install statt npm ci (keine package-lock.json vorhanden)
1 parent 84aace5 commit 7012b1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM node:20-alpine AS build-stage
44
WORKDIR /app
55

66
COPY package*.json ./
7-
RUN npm ci
7+
RUN npm install
88

99
COPY . .
1010
RUN npm run build

0 commit comments

Comments
 (0)