We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e99307 commit dea4bd0Copy full SHA for dea4bd0
Dockerfile
@@ -1,6 +1,6 @@
1
FROM --platform=${BUILDPLATFORM:-amd64} node:18-alpine as build_src
2
WORKDIR /usr/app
3
-RUN apk update && apk add --no-cache g++ make python3 git && rm -rf /var/cache/apk/*
+RUN apk update && apk add --no-cache g++ make python3 py3-setuptools git && rm -rf /var/cache/apk/*
4
5
COPY . .
6
@@ -11,7 +11,7 @@ RUN yarn install --non-interactive --frozen-lockfile && \
11
12
FROM node:18-alpine as build_deps
13
14
15
16
COPY --from=build_src /usr/app .
17
0 commit comments