FROM cypress/base:24.0.0@sha256:a12dd7ba6c42601ba02328491320f04fede8b652f6da27247897b9a6d413c2b9 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.29.2@sha256:ab38858ab8672c95032067a00ea395e8b810cbd15019ca01f7fea1ee2afb45b1 MAINTAINER Joakim Olsson COPY --from=builder /build/.output/public/ /usr/share/nginx/html/ COPY --from=builder /build/nginx-conf/default.conf /etc/nginx/conf.d/