Files
dancefinder-app/Dockerfile
T

17 lines
569 B
Docker
Raw Normal View History

FROM cypress/base:22.12.0@sha256:227d72382d53081dd326e79c5a51acd219f26400a72705d59e83b3208fcd65a3 as builder
2019-01-15 13:21:24 +01:00
WORKDIR /build
COPY ./package.json ./package-lock.json ./.snyk ./
RUN npm ci --no-progress
2019-01-15 13:21:24 +01:00
COPY ./ ./
RUN npm run generate && npm run lint
2019-01-15 13:52:04 +01:00
#RUN yarn start:ci & yarn wait && yarn test:cypress
2019-01-15 13:21:24 +01:00
FROM nginx@sha256:fb197595ebe76b9c0c14ab68159fd3c08bd067ec62300583543f0ebda353b5be
2019-01-15 13:21:24 +01:00
MAINTAINER Joakim Olsson <joakim@unbound.se>
2022-08-16 06:55:09 +02:00
COPY --from=builder /build/.output/public/ /usr/share/nginx/html/
2019-01-15 13:21:24 +01:00
COPY --from=builder /build/nginx-conf/default.conf /etc/nginx/conf.d/