There was an error while loading. Please reload this page.
1 parent e529c7b commit d13ff16Copy full SHA for d13ff16
1 file changed
Dockerfile
@@ -11,7 +11,7 @@ RUN apk add --no-cache openssl
11
# Copy manifests and install deps
12
COPY package.json pnpm-lock.yaml ./
13
# Use pnpm with the existing lockfile for deterministic installs
14
-RUN npm i -g pnpm && pnpm install --frozen-lockfile
+RUN npm i -g pnpm && pnpm config set dangerously-allow-all-scripts true && pnpm install --frozen-lockfile
15
16
# Copy source
17
COPY . .
@@ -35,4 +35,4 @@ EXPOSE 3000
35
ENV NODE_ENV=production
36
ENV HOST=0.0.0.0
37
ENV PORT=3000
38
-CMD [ "node", "./build/index.js" ]
+CMD [ "node", "./build/index.js" ]
0 commit comments