mirror of
https://github.com/getredash/redash.git
synced 2026-05-13 16:01:20 -04: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
|