mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 09:27:23 -05:00
13 lines
301 B
Docker
13 lines
301 B
Docker
FROM cypress/browsers:node18.12.0-chrome106-ff106
|
|
|
|
ENV APP /usr/src/app
|
|
WORKDIR $APP
|
|
|
|
COPY package.json yarn.lock .yarnrc $APP/
|
|
COPY viz-lib $APP/viz-lib
|
|
RUN npm install yarn@1.22.22 -g && yarn --frozen-lockfile --network-concurrency 1 > /dev/null
|
|
|
|
COPY . $APP
|
|
|
|
RUN ./node_modules/.bin/cypress verify
|