mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 09:05:17 +00:00
ff008a076b
* Upgraded Cypress to v5.3 and fixed e2e tests * Updated cypress image * Fixed failing tests * Updated NODE_VERSION in netlify * Update client/cypress/integration/visualizations/choropleth_spec.js Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com> * fixed test in choropleth Co-authored-by: Gabriel Dutra <nesk.frz@gmail.com>
13 lines
222 B
Docker
13 lines
222 B
Docker
FROM cypress/browsers:node14.0.0-chrome84
|
|
|
|
ENV APP /usr/src/app
|
|
WORKDIR $APP
|
|
|
|
COPY package.json package-lock.json $APP/
|
|
COPY viz-lib $APP/viz-lib
|
|
RUN npm ci > /dev/null
|
|
|
|
COPY . $APP
|
|
|
|
RUN ./node_modules/.bin/cypress verify
|