Skip to content

Commit

Permalink
Fixed: dev.Dockerfile to avoid package installation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
GPortas committed Sep 15, 2023
1 parent d1ff31a commit e909312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM node:19.6.1-alpine as BUILD_IMAGE

RUN apk --no-cache add python3 make g++

WORKDIR /usr/src/app/packages/design-system
COPY ./packages/design-system ./
RUN npm install
RUN npm run build

WORKDIR /usr/src/app
COPY package.json ./
COPY package-lock.json ./
COPY .npmrc ./
RUN npm uninstall --save-dev lerna
RUN npm install

FROM node:19.6.1-alpine
Expand Down

0 comments on commit e909312

Please sign in to comment.