16 lines
331 B
Docker
16 lines
331 B
Docker
|
|
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
|