31 lines
810 B
Docker
31 lines
810 B
Docker
FROM repo.nstart.cloud/nstart/node:24-trixie-slim AS builder
|
|
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
|
|
|
|
FROM repo.nstart.cloud/library/nginx:alpine
|
|
|
|
RUN apk upgrade --no-cache
|
|
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --chmod=755 docker-entrypoint.d/20-nstart-runtime-config.sh /docker-entrypoint.d/20-nstart-runtime-config.sh
|
|
|
|
RUN sed -i '/^user /d; s|pid\s*/run/nginx.pid;|pid /tmp/nginx.pid;|' /etc/nginx/nginx.conf \
|
|
&& chown -R nginx:nginx /usr/share/nginx/html /var/cache/nginx /var/log/nginx
|
|
|
|
USER nginx
|
|
|
|
EXPOSE 8081
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
|
|
CMD wget -qO- http://localhost:8081/healthz || exit 1
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|