From 61e005d8e7df5b26e1a9d40f84f29bb849c55d62 Mon Sep 17 00:00:00 2001 From: BatLeDev Date: Tue, 6 May 2025 16:17:07 +0200 Subject: [PATCH] fix: missing tools --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc50be22..6185d4bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN jq '.version="build"' package-lock.json | sponge package-lock.json # ============================= FROM base AS installer -RUN apk add --no-cache python3 make g++ git jq moreutils +RUN apk add --no-cache git jq moreutils RUN npm i -g clean-modules@3.0.4 COPY --from=package-strip /app/package.json package.json COPY --from=package-strip /app/package-lock.json package-lock.json @@ -121,6 +121,7 @@ RUN mkdir -p /app/shared/node_modules # ============================= FROM base AS main +RUN apk add --no-cache python3 make g++ COPY --from=api-installer /app/node_modules node_modules COPY api api COPY shared shared