mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 18:18:53 +08:00
* Build SQLite 3.41.0 * Update pivot_vtab * Add Pearson correlation coefficient function extension, build * Add an easy way to running test locally without Nodejs * Use RSS sum to pick top2 processes for the report * Try previous Ubuntu LTS as a workaround for Firefox worker not starting
25 lines
488 B
Docker
25 lines
488 B
Docker
# An easy way to run tests locally without Nodejs installed:
|
|
#
|
|
# docker build -t sqliteviz/test -f Dockerfile.test .
|
|
#
|
|
|
|
FROM node:12
|
|
|
|
RUN set -ex; \
|
|
apt update; \
|
|
apt install -y chromium firefox-esr; \
|
|
npm install -g npm@7
|
|
|
|
WORKDIR /tmp/build
|
|
|
|
COPY package.json package-lock.json ./
|
|
COPY lib lib
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN set -ex; \
|
|
sed -i 's/browsers: \[.*\],/browsers: ['"'FirefoxHeadlessTouch'"'],/' karma.conf.js
|
|
|
|
RUN npm run lint -- --no-fix && npm run test
|