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
#RUN yarn start:ci & yarn wait && yarn test:cypress

FROM amd64/nginx:1.30.0@sha256:5e9daa0c19a62005bf5663d17a81fee8ba8ab545bab633a0b47260fbf31b0541
MAINTAINER Joakim Olsson <joakim@unbound.se>

COPY --from=builder /build/.output/public/ /usr/share/nginx/html/
COPY --from=builder /build/nginx-conf/default.conf /etc/nginx/conf.d/
