17 lines
582 B
Docker
17 lines
582 B
Docker
FROM cypress/base:22.15.0@sha256:dcca936f59362209da3d29acd9e01b299d3ab72bcf32a22c2949ba4210f9b92f as builder
|
|
|
|
WORKDIR /build
|
|
|
|
COPY ./package.json ./package-lock.json ./.snyk ./
|
|
RUN npm ci --no-progress
|
|
|
|
COPY ./ ./
|
|
RUN npm run generate && npm run lint
|
|
#RUN yarn start:ci & yarn wait && yarn test:cypress
|
|
|
|
FROM amd64/nginx:1.28.0@sha256:867e23b9340e32449c7918a67120f91f369c768710a5ca9acec7d1e19477a32c
|
|
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/
|