Skip to content

Commit

Permalink
build: update docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Feb 2, 2024
1 parent 56453c1 commit 36b9d9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM docker.io/library/node:16-alpine AS builder
WORKDIR /build

# Install dependencies
COPY package.json yarn.lock ./
COPY package.json package-lock.json ./
COPY packages/app/package.json ./packages/app/
COPY packages/lib/package.json ./packages/lib/
RUN yarn --frozen-lockfile
RUN npm ci

# Copy remaining required files and create production build
COPY packages ./packages/
Expand Down

0 comments on commit 36b9d9e

Please sign in to comment.