We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2da029 commit 9dcaf60Copy full SHA for 9dcaf60
Dockerfile
@@ -16,7 +16,7 @@ COPY --chown=node:node package.json ./
16
COPY --chown=node:node yarn.lock ./
17
18
# Install Yarn 4 globally
19
-RUN corepack enable && corepack prepare yarn@4.0.2 --activate
+RUN corepack enable && corepack prepare yarn@4.0.2 --activate && yarn config set nodeLinker node-modules
20
21
# Bring in the source of the Ziti BrowZer Bootstrapper to the working folder
22
COPY --chown=node:node index.js .
@@ -25,7 +25,9 @@ COPY --chown=node:node lib ./lib/
25
COPY --chown=node:node assets ./assets/
26
27
# Install dependencies (ensuring node_modules remains)
28
-RUN yarn install --immutable
+RUN yarn install
29
+
30
+RUN ls -l
31
32
# Stage 2: Production-ready image
33
FROM node:22-slim
0 commit comments