fix: add git to node builder

This commit is contained in:
Damillora 2025-02-24 14:43:36 +00:00
parent 88b0a91f50
commit ae5f17ede8

View File

@ -3,6 +3,7 @@ FROM node:20-alpine AS node_build
WORKDIR /src
COPY . .
WORKDIR /src/pkg/web
RUN apk update && apk add git
RUN npm ci && npm run build
# Go application