Skip to content

Commit

Permalink
fix on dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmanos committed Oct 12, 2023
1 parent 74ef66b commit 6c0cd02
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 @@ -3,7 +3,7 @@ FROM node:16-bullseye-slim AS builder
WORKDIR /home/node/app

COPY . .
RUN yarn cache clean && yarn --frozen-lockfile && yarn build
RUN yarn cache clean && yarn install && yarn build

# Production stage
FROM node:16-bullseye-slim AS production
Expand Down

0 comments on commit 6c0cd02

Please sign in to comment.