2023-09-21 03:01:47 +02:00
|
|
|
# --- Builder stage
|
|
|
|
FROM node:18-alpine as builder
|
|
|
|
WORKDIR /app
|
|
|
|
|
2024-02-24 07:55:23 +01:00
|
|
|
#Copy package.json first to cache node_modules
|
|
|
|
COPY package.json package-lock.json .
|
2023-09-21 03:01:47 +02:00
|
|
|
# Scripts include electron-specific dependencies, which we don't need
|
|
|
|
RUN npm install --legacy-peer-deps --ignore-scripts
|
2024-02-24 07:55:23 +01:00
|
|
|
#Copy code and build with cached modules
|
|
|
|
COPY . .
|
2023-09-21 03:01:47 +02:00
|
|
|
RUN npm run build:web
|
|
|
|
|
|
|
|
# --- Production stage
|
|
|
|
FROM nginx:alpine-slim
|
|
|
|
|
2023-10-18 07:10:53 +02:00
|
|
|
COPY --chown=nginx:nginx --from=builder /app/release/app/dist/web /usr/share/nginx/html
|
2024-02-24 07:55:23 +01:00
|
|
|
COPY ./settings.js.template /etc/nginx/templates/settings.js.template
|
2023-10-18 07:10:53 +02:00
|
|
|
COPY ng.conf.template /etc/nginx/templates/default.conf.template
|
2023-09-21 03:01:47 +02:00
|
|
|
|
2023-10-18 07:10:53 +02:00
|
|
|
ENV PUBLIC_PATH="/"
|
2023-09-21 03:01:47 +02:00
|
|
|
EXPOSE 9180
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|