2025-11-22 16:42:35 +01:00
|
|
|
FROM cypress/base:25.0.0@sha256:43bc659f825c1a9e4aa540fcdf35065de3e20e0b463589bfccd1ecb717cfc0fb as builder
|
|
|
|
|
WORKDIR /build
|
|
|
|
|
|
|
|
|
|
RUN npm install --global node-gyp && \
|
|
|
|
|
git config --global --add safe.directory /build
|
|
|
|
|
|
|
|
|
|
COPY ./package.json ./package-lock.json ./
|
|
|
|
|
RUN npm ci --no-progress
|
|
|
|
|
COPY . /build
|
2025-11-22 19:49:53 +01:00
|
|
|
RUN npm run postinstall && npm run generate && npm run lint && npm run test:coverage
|
|
|
|
|
|
|
|
|
|
FROM scratch as export
|
|
|
|
|
COPY --from=builder /build/coverage /
|
2025-11-22 16:42:35 +01:00
|
|
|
|
2026-02-05 01:25:10 +00:00
|
|
|
FROM amd64/nginx:1.29.5@sha256:c2a63cf3b2905e3ff73b0746cbd79e4d5b88fb70c56e9ce63d6537c1e5cc68d8
|
2025-11-22 16:42:35 +01:00
|
|
|
MAINTAINER Joakim Olsson <joakim@unbound.se>
|
|
|
|
|
|
|
|
|
|
COPY ./nginx/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
|
COPY ./nginx/security_headers.conf /etc/nginx/security_headers.conf
|
|
|
|
|
COPY --from=builder /build/.output/public/ /usr/share/nginx/html/
|