chore(docker): add git installation in Dockerfile for frontend build

This commit is contained in:
Ivan
2026-04-16 22:11:02 -05:00
parent eee4ed1ea2
commit f718e4dbfb
+1
View File
@@ -12,6 +12,7 @@ ARG PYTHON_HASH=sha256:27ac3ba1699f7a526ad19bf0d35c12369b43d3439e08297a880398d97
# ---- STAGE 1: Frontend Build ----
FROM ${NODE_IMAGE}@${NODE_HASH} AS build-frontend
WORKDIR /src
RUN apk add --no-cache git
COPY package.json pnpm-lock.yaml vite.config.js tailwind.config.js postcss.config.js ./
COPY meshchatx/src/frontend ./meshchatx/src/frontend
RUN npm install -g pnpm@10.32.1 && \