Skip to content

Commit

Permalink
fix: frontend dockerfile install python2
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekzyla committed Jul 4, 2023
1 parent a952a8f commit 00f45fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ WORKDIR /frontend
ENV PATH /frontend/node_modules/.bin:$PATH
COPY package.json yarn.lock lerna.json ./
COPY ./packages ./packages
RUN apk add --update --no-cache python3
RUN apk add --no-cache make
RUN apk add --update python2 make g++ && rm -rf /var/cache/apk/*
RUN yarn install
RUN yarn run build
RUN apk add curl
Expand Down

0 comments on commit 00f45fc

Please sign in to comment.