78 lines
2.1 KiB
Docker
78 lines
2.1 KiB
Docker
# Stage 1: Install dependencies
|
|
FROM node:22-slim AS deps
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN rm -rf node_modules package-lock.json && \
|
|
npm install --ignore-scripts --force && \
|
|
npm cache clean --force
|
|
|
|
# Stage 2: Build frontend
|
|
FROM deps AS frontend-builder
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN find public/fonts -name "*.ttf" ! -name "*Regular.ttf" ! -name "*Bold.ttf" ! -name "*Italic.ttf" -delete
|
|
|
|
RUN npm cache clean --force && \
|
|
npm run build
|
|
|
|
# Stage 3: Build backend
|
|
FROM deps AS backend-builder
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm rebuild better-sqlite3 --force
|
|
|
|
RUN npm run build:backend
|
|
|
|
# Stage 4: Production dependencies only
|
|
FROM node:22-slim AS production-deps
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm ci --only=production --ignore-scripts --force && \
|
|
npm rebuild better-sqlite3 bcryptjs --force && \
|
|
npm cache clean --force
|
|
|
|
# Stage 5: Final optimized image
|
|
FROM node:22-slim
|
|
WORKDIR /app
|
|
|
|
ENV DATA_DIR=/app/data \
|
|
PORT=8080 \
|
|
NODE_ENV=production
|
|
|
|
RUN apt-get update && apt-get install -y nginx gettext-base openssl && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
mkdir -p /app/data /app/uploads && \
|
|
chown -R node:node /app/data /app/uploads && \
|
|
useradd -r -s /bin/false nginx
|
|
|
|
COPY docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY docker/nginx-https.conf /etc/nginx/nginx-https.conf
|
|
|
|
COPY --chown=nginx:nginx --from=frontend-builder /app/dist /usr/share/nginx/html
|
|
COPY --chown=nginx:nginx --from=frontend-builder /app/src/locales /usr/share/nginx/html/locales
|
|
COPY --chown=nginx:nginx --from=frontend-builder /app/public/fonts /usr/share/nginx/html/fonts
|
|
|
|
COPY --chown=node:node --from=production-deps /app/node_modules /app/node_modules
|
|
COPY --chown=node:node --from=backend-builder /app/dist/backend ./dist/backend
|
|
COPY --chown=node:node package.json ./
|
|
|
|
VOLUME ["/app/data"]
|
|
|
|
EXPOSE ${PORT} 30001 30002 30003 30004 30005 30006
|
|
|
|
COPY docker/entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
CMD ["/entrypoint.sh"]
|