feishin/Dockerfile

24 lines
583 B
Text
Raw Normal View History

# --- Builder stage
FROM node:18-alpine as builder
WORKDIR /app
2025-05-25 21:15:03 -07:00
# Copy package.json first to cache node_modules
COPY package.json package-lock.json .
2025-05-25 21:15:03 -07:00
RUN pnpm install
# Copy code and build with cached modules
COPY . .
2025-05-25 21:15:03 -07:00
RUN pnpm run build:web
# --- Production stage
FROM nginx:alpine-slim
COPY --chown=nginx:nginx --from=builder /app/release/app/dist/web /usr/share/nginx/html
COPY ./settings.js.template /etc/nginx/templates/settings.js.template
COPY ng.conf.template /etc/nginx/templates/default.conf.template
ENV PUBLIC_PATH="/"
EXPOSE 9180
CMD ["nginx", "-g", "daemon off;"]