From 2888e6da4d4f34280251533a88803b78ffc5604e Mon Sep 17 00:00:00 2001 From: marie-fourier Date: Mon, 25 Mar 2024 21:39:20 +0500 Subject: [PATCH] add git package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5eec1b75..504a3581 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 && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache g++ make python3 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 && rm -rf /var/cache/apk/* +RUN apk update && apk add --no-cache g++ make python3 git && rm -rf /var/cache/apk/* COPY --from=build_src /usr/app .