From 00f45fccd25cedf64a181b80f9419967e5caefe8 Mon Sep 17 00:00:00 2001 From: Wojciech Zyla Date: Tue, 4 Jul 2023 17:35:20 +0200 Subject: [PATCH] fix: frontend dockerfile install python2 --- frontend/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index ec57a78..303051e 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -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