From dea4bd00cdd4479a44b250399ca80d66cd6d9964 Mon Sep 17 00:00:00 2001 From: Utkir S Date: Fri, 24 May 2024 17:17:49 +0500 Subject: [PATCH] fix dockerfile (#195) --- 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 .