v1.7.0 #318

Merged
LukeGus merged 138 commits from dev-1.7.0 into main 2025-10-01 20:40:10 +00:00
Showing only changes of commit 9969d17c57 - Show all commits

View File

@@ -11,6 +11,7 @@ ENV npm_config_target_arch=x64
ENV npm_config_target_libc=musl
RUN npm ci --force --ignore-scripts && \
npm install @rollup/rollup-linux-x64-musl --force && \
npm cache clean --force
# Stage 2: Build frontend
@@ -19,7 +20,9 @@ WORKDIR /app
COPY . .
RUN npm run build
RUN npm install @rollup/rollup-linux-x64-musl --force && \
npm cache clean --force && \
npm run build
# Stage 3: Build backend TypeScript
FROM deps AS backend-builder