Files
Cloud-CMS/Dockerfile.cypress

16 lines
331 B
Docker
Raw Normal View History

2025-12-02 10:32:59 -05:00
FROM cypress/base:12
WORKDIR /app
RUN npm install har-validator
RUN npm install --save-dev --slient cypress@10.1.0
RUN $(npm bin)/cypress verify
RUN mkdir /app/results
# Create this file so that we can volume mount it
RUN touch /app/cypress.config.js
# Create this folder so that we can volume mount it
RUN mkdir /app/cypress