mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 10:08:52 +08:00
* Proof-of-concept pre-built custom sql.js * Rewrite Makefile as a couple of comprehensible Python scripts * Add link to a blog post about transitive closure in SQLite * Remove eval extension -- no much point as it only returns a string * Consistently use existing Path objects * Add basic tests scalar functions from extension-functions.c * Test presence of functions from the rest of built extensions * Use the same sqlite.com domain * Add a couple SQLite compile flags that may make it a bit faster * Add regexpi function test * Add node about regexpi and REGEXP operator * Workaround first build failure, rebuild lock file and minor fixes
10 lines
137 B
Docker
10 lines
137 B
Docker
FROM emscripten/emsdk:2.0.24
|
|
|
|
WORKDIR /tmp/build
|
|
|
|
COPY configure.py .
|
|
RUN python3.8 configure.py
|
|
|
|
COPY build.py .
|
|
RUN python3.8 build.py
|