Files
dancefinder-app/Dockerfile
T

20 lines
691 B
Docker
Raw Normal View History

FROM cypress/base:26.0.0@sha256:446be8fcb63e3cad2f9a4e14720e3d8e35993e12f36da541e09f5740a4c2477c as builder
2019-01-15 13:21:24 +01:00
WORKDIR /build
2025-07-16 16:05:26 +00:00
RUN npm install --global node-gyp && \
git config --global --add safe.directory /build
COPY ./package.json ./package-lock.json ./
RUN npm ci --no-progress
2025-07-16 16:05:26 +00:00
COPY . /build
RUN npm run postinstall && 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 amd64/nginx:1.31.1@sha256:c81b9fbaf3132ca4bc93bce39d423fae676b4fe3ffc6368d8585b38f515f251a
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/