Files
dancefinder-app/Dockerfile
T
renovate 17342e7569
dancefinder-app / build (push) Successful in 1m7s
dancefinder-app / deploy-prod (push) Successful in 1m37s
chore(deps): update nginx:1.29.4 docker digest to 506d6be (#2742)
2026-01-10 01:03:20 +00:00

20 lines
691 B
Docker

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.29.4@sha256:506d6be5e76c0b5bd15398853c158210cd030926eb0206bd11c14826e3ec9cdd
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/