Skip to content

Commit

Permalink
add libc6-compat to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Oct 14, 2022
1 parent c14c995 commit 284a39a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 284a39a

Please sign in to comment.