This commit is contained in:
2025-10-19 03:33:06 +11:00
parent 007093ac48
commit 892fa7ce41

View File

@@ -4,7 +4,8 @@ COPY server/frontend/package*.json ./
RUN npm install
COPY server/frontend .
ARG version
RUN VITE_APP_VERSION=${version} npm run build
ENV VITE_APP_VERSION=${version}
RUN npm run build
FROM golang:1.25 as builder
LABEL authors="nite07"