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 . .