Files
dancefinder-app/Dockerfile
T
renovate 6748e174d9
dancefinder-app / build (push) Successful in 2m0s
dancefinder-app / deploy-prod (push) Successful in 1m39s
chore(deps): update nginx:1.30.0 docker digest to 56b5242 (#2894)
2026-05-09 00:07:19 +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.30.0@sha256:56b5242e586f44c59e6de3b831207225c810ed23bb22d67e8e0af902a0c2ed88
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/