From 1be8594c3bb038fdd720ec6d8e66a4f77a6f4e52 Mon Sep 17 00:00:00 2001 From: marie-fourier Date: Fri, 24 May 2024 16:29:29 +0500 Subject: [PATCH] fix dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9f326dc5..039e7fe1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM --platform=${BUILDPLATFORM:-amd64} node:18-alpine as build_src WORKDIR /usr/app -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/* COPY . . @@ -11,7 +11,7 @@ RUN yarn install --non-interactive --frozen-lockfile && \ FROM node:18-alpine as build_deps WORKDIR /usr/app -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/* COPY --from=build_src /usr/app .