diff --git a/Dockerfile b/Dockerfile index 6acd7d10..f9e32313 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM docker.io/node:alpine as builder -RUN apk add --no-cache git +RUN apk add --no-cache git python3 build-base COPY . /app WORKDIR /app RUN yarn install \ diff --git a/Dockerfile-dev b/Dockerfile-dev index 31877ee1..08dd9abd 100644 --- a/Dockerfile-dev +++ b/Dockerfile-dev @@ -1,5 +1,5 @@ FROM docker.io/node:alpine -RUN apk add --no-cache git +RUN apk add --no-cache git python3 build-base COPY . /code WORKDIR /code RUN yarn install