add libc6-compat to dockerfile

This commit is contained in:
Amruth Pillai
2022-10-15 01:27:06 +02:00
parent c14c9955dd
commit 284a39aa77
2 changed files with 2 additions and 2 deletions

View File

@ -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