Skip to content

Commit dea4bd0

Browse files
authored
fix dockerfile (#195)
1 parent 0e99307 commit dea4bd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM --platform=${BUILDPLATFORM:-amd64} node:18-alpine as build_src
22
WORKDIR /usr/app
3-
RUN apk update && apk add --no-cache g++ make python3 git && rm -rf /var/cache/apk/*
3+
RUN apk update && apk add --no-cache g++ make python3 py3-setuptools git && rm -rf /var/cache/apk/*
44

55
COPY . .
66

@@ -11,7 +11,7 @@ RUN yarn install --non-interactive --frozen-lockfile && \
1111

1212
FROM node:18-alpine as build_deps
1313
WORKDIR /usr/app
14-
RUN apk update && apk add --no-cache g++ make python3 git && rm -rf /var/cache/apk/*
14+
RUN apk update && apk add --no-cache g++ make python3 py3-setuptools git && rm -rf /var/cache/apk/*
1515

1616
COPY --from=build_src /usr/app .
1717

0 commit comments

Comments
 (0)