Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix(docker): fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jul 16, 2024
1 parent a16323e commit ae19950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM node:${NODE_VERSION}-bullseye-slim AS builder
WORKDIR /app
COPY . .
RUN yarn --ignore-engines && yarn build
RUN rm-rf node_modules & yarn install --force
RUN rm-rf node_modules & yarn install --force -- ignore-engines

# Runtime
FROM gcr.io/distroless/nodejs${NODE_VERSION_SHORT}-debian11
Expand Down

0 comments on commit ae19950

Please sign in to comment.