21 lines
768 B
Docker
21 lines
768 B
Docker
FROM cypress/base:26.0.0@sha256:446be8fcb63e3cad2f9a4e14720e3d8e35993e12f36da541e09f5740a4c2477c 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.31.0@sha256:294b92c5f90f41c391d784c6c7d5af8c995a4708c5119bba22c38eea187b6e4f
|
|
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/
|