Skip to content

Commit d13ff16

Browse files
authored
Update Dockerfile
1 parent e529c7b commit d13ff16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apk add --no-cache openssl
1111
# Copy manifests and install deps
1212
COPY package.json pnpm-lock.yaml ./
1313
# Use pnpm with the existing lockfile for deterministic installs
14-
RUN npm i -g pnpm && pnpm install --frozen-lockfile
14+
RUN npm i -g pnpm && pnpm config set dangerously-allow-all-scripts true && pnpm install --frozen-lockfile
1515

1616
# Copy source
1717
COPY . .
@@ -35,4 +35,4 @@ EXPOSE 3000
3535
ENV NODE_ENV=production
3636
ENV HOST=0.0.0.0
3737
ENV PORT=3000
38-
CMD [ "node", "./build/index.js" ]
38+
CMD [ "node", "./build/index.js" ]

0 commit comments

Comments
 (0)