Skip to content

Commit 3319a5e

Browse files
committed
Updates Docker build to standardize dependencies
Switches to a more flexible installation method for consistency and smoother builds
1 parent 04e11eb commit 3319a5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editor/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Build stage
2-
FROM node:18-alpine as build
2+
FROM node:18-alpine AS build
33
WORKDIR /app
44

55
# Copy package files
66
COPY package*.json ./
7-
RUN npm ci
7+
RUN npm install
88

99
# Copy source code
1010
COPY . .

0 commit comments

Comments
 (0)