[QUESTION]: ERROR [2/6] RUN apk update && apk add python make g++ #2490
-
=> ERROR [2/6] RUN apk update && apk add python make g++ 1.8s
executor failed running [/bin/sh -c apk update && apk add python make g++]: exit code: 2 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Can you be more specific with the question? This does not seem to be related to Conductor. |
Beta Was this translation helpful? Give feedback.
-
Ok, found a workaround for this.. on the file RUN apk update && apk add python make g++ to RUN apk update && apk add --no-cache python3 py3-pip make g++ |
Beta Was this translation helpful? Give feedback.
-
@javiercanillas Thanks for the workaround. Will prioritize patch. |
Beta Was this translation helpful? Give feedback.
Ok, found a workaround for this.. on the file
docker/ui/Dockerfile
in line 9, we need to change:RUN apk update && apk add python make g++
to
RUN apk update && apk add --no-cache python3 py3-pip make g++