We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af9a7bb commit fdf5701Copy full SHA for fdf5701
1 file changed
Dockerfile-wasm-udf
@@ -11,11 +11,12 @@ WORKDIR /home/libsql
11
ADD src src
12
ADD ext ext
13
ADD tool tool
14
+ADD VERSION LIBSQL_VERSION
15
16
RUN apt-get update
17
RUN apt-get install -y tcl8.6-dev build-essential autoconf
18
-#I'm sorry for that
19
+# To make the build system happy
20
RUN ln -s /bin/grep /usr/bin/grep
21
RUN ln -s /bin/sed /usr/bin/sed
22
RUN ln -sf /bin/bash /bin/sh
@@ -24,5 +25,5 @@ COPY manifest manifest.uuid VERSION configure.ac Makefile.in \
24
25
libtool sqlite3.pc.in sqlite_cfg.h.in install-sh config.guess config.sub ltmain.sh .
26
27
RUN autoconf
-RUN ./configure --enable-wasm-runtime
28
-RUN make sqlite3
+RUN ./configure --enable-wasm-runtime --enable-releasemode --enable-all
29
+RUN make
0 commit comments