From 67d60904ff163151ea741e9de853c2ec7ae3e725 Mon Sep 17 00:00:00 2001 From: iAmir Date: Tue, 16 Jan 2024 02:33:52 +0330 Subject: [PATCH] install git in our docker --- Dockerfile.frontend | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.frontend b/Dockerfile.frontend index f8c8f0789..384f8f114 100644 --- a/Dockerfile.frontend +++ b/Dockerfile.frontend @@ -1,10 +1,11 @@ FROM node:16-alpine AS deps -RUN apk add --no-cache libc6-compat +RUN apk add --no-cache libc6-compat git WORKDIR /app COPY frontend/package.json frontend/yarn.lock ./frontend/ RUN cd frontend && yarn install --frozen-lockfile FROM node:16-alpine AS builder +RUN apk add --no-cache git WORKDIR /app # Copy everything COPY . .