v1.6.0 #221

Merged
LukeGus merged 74 commits from dev-1.6.0 into main 2025-09-12 19:42:00 +00:00
Showing only changes of commit 4568bc23c4 - Show all commits

View File

@@ -6,6 +6,11 @@ RUN apk add --no-cache python3 make g++
COPY package*.json ./ COPY package*.json ./
# Set environment variables to force x64 architecture for problematic packages
ENV npm_config_target_platform=linux
ENV npm_config_target_arch=x64
ENV npm_config_target_libc=glibc
RUN npm ci --force && \ RUN npm ci --force && \
npm cache clean --force npm cache clean --force
@@ -31,6 +36,11 @@ WORKDIR /app
COPY package*.json ./ COPY package*.json ./
# Set environment variables to force x64 architecture for problematic packages
ENV npm_config_target_platform=linux
ENV npm_config_target_arch=x64
ENV npm_config_target_libc=glibc
RUN npm ci --only=production --ignore-scripts --force && \ RUN npm ci --only=production --ignore-scripts --force && \
npm cache clean --force npm cache clean --force
@@ -42,6 +52,11 @@ RUN apk add --no-cache python3 make g++
COPY package*.json ./ COPY package*.json ./
# Set environment variables to force x64 architecture for problematic packages
ENV npm_config_target_platform=linux
ENV npm_config_target_arch=x64
ENV npm_config_target_libc=glibc
RUN npm ci --only=production bcryptjs better-sqlite3 --force && \ RUN npm ci --only=production bcryptjs better-sqlite3 --force && \
npm cache clean --force npm cache clean --force