We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46d1354 commit d3d263fCopy full SHA for d3d263f
editor/Dockerfile
@@ -5,8 +5,9 @@ WORKDIR /app
5
# Copy package files first for better Docker layer caching
6
COPY package.json package-lock.json ./
7
8
-# Install dependencies, skipping platform-specific optional dependencies
9
-RUN npm ci --omit=optional || npm install --omit=optional
+# Remove Windows-specific Rollup package and install dependencies
+RUN npm pkg delete devDependencies.@rollup/rollup-win32-x64-msvc && \
10
+ npm ci || npm install
11
12
# Copy source code
13
COPY . .
0 commit comments