mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 10:08:52 +08:00
* Update to sql.js 1.7.0 * Update to emsdk 3.0.1, replace/remove deprecated/irrelevant settings - Renamed .bc extension to .o - Remove deprecated INLINING_LIMIT setting - Remove SINGLE_FILE * Update SQLite to 3.39.3 * Collect and plot CPU and RSS charts from the benchmark containers * Move procpath commands to a playbook, plot only top 2 RSS & CPU usage * Optimise for size, put -flto for both compile and link
10 lines
136 B
Docker
10 lines
136 B
Docker
FROM emscripten/emsdk:3.0.1
|
|
|
|
WORKDIR /tmp/build
|
|
|
|
COPY configure.py .
|
|
RUN python3.8 configure.py
|
|
|
|
COPY build.py .
|
|
RUN python3.8 build.py
|