Files
schemas-app/Dockerfile
T
renovate eec2336b34
schemas-app / build (push) Successful in 1m22s
schemas-app / deploy-prod (push) Successful in 1m25s
chore(deps): update nginx:1.29.4 docker digest to 450d33f (#88)
2026-02-03 05:11:50 +00:00

21 lines
768 B
Docker

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
RUN npm run postinstall && npm run generate && npm run lint && npm run test:coverage
FROM scratch as export
COPY --from=builder /build/coverage /
FROM amd64/nginx:1.29.4@sha256:450d33f326ef97ebf58f47fb0315736c46c97cc48a90512e4c68f1b44f7febf7
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/