mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 17:38:54 +00:00
11 lines
209 B
Docker
11 lines
209 B
Docker
FROM cypress/browsers:chrome67
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
RUN npm install cypress > /dev/null
|
|
|
|
COPY cypress /usr/src/app/cypress
|
|
COPY cypress.json /usr/src/app/cypress.json
|
|
|
|
RUN ./node_modules/.bin/cypress verify
|