Changed Dockerfile

This commit is contained in:
h202-wq
2026-07-09 11:05:03 -04:00
parent 27d48266ee
commit 9b70051f0d
+3 -1
View File
@@ -23,7 +23,9 @@ RUN mkdir -p /build/static/public/static && yarn install --frozen-lockfile
COPY frontend/ ./
COPY --from=email-builder /build/email-builder/dist ./public/static/email-builder
ENV VUE_APP_VERSION=${APP_VERSION}
RUN yarn build
# Invoke vite directly: the package.json "prebuild" hook runs eslint with
# --ignore-path .gitignore, which isn't present in the build context.
RUN yarn vite build
# ---- backend (Go) ----
FROM golang:1.26-alpine AS backend