diff --git a/client/Dockerfile b/client/Dockerfile index 26fdc339..58681b6e 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine AS base WORKDIR /app -RUN apk add --no-cache g++ git curl make python3 \ +RUN apk add --no-cache g++ git curl make python3 libc6-compat \ && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm FROM base as dependencies diff --git a/server/Dockerfile b/server/Dockerfile index 8ea7ac07..692390a4 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts-alpine AS base WORKDIR /app -RUN apk add --no-cache g++ git curl make python3 \ +RUN apk add --no-cache g++ git curl make python3 libc6-compat \ && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm FROM base AS dependencies