File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y \
37
37
38
38
# Install rust using rustup
39
39
ARG CHANNEL
40
- ENV RUSTUP_VER="1.25.1 " \
40
+ ENV RUSTUP_VER="1.26.0 " \
41
41
RUST_ARCH="x86_64-unknown-linux-gnu" \
42
42
CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
43
43
@@ -53,10 +53,10 @@ RUN chmod a+X /root
53
53
# Convenience list of versions and variables for compilation later on
54
54
# This helps continuing manually if anything breaks.
55
55
ENV SSL_VER="1.1.1q" \
56
- CURL_VER="7.85.0 " \
57
- ZLIB_VER="1.2.13 " \
56
+ CURL_VER="8.2.1 " \
57
+ ZLIB_VER="1.3 " \
58
58
PQ_VER="11.12" \
59
- SQLITE_VER="3390400 " \
59
+ SQLITE_VER="3420000 " \
60
60
CC=musl-gcc \
61
61
PREFIX=/musl \
62
62
PATH=/usr/local/bin:/root/.cargo/bin:$PATH \
@@ -112,7 +112,7 @@ RUN curl -sSL https://ftp.postgresql.org/pub/source/v$PQ_VER/postgresql-$PQ_VER.
112
112
cd .. && rm -rf postgresql-$PQ_VER
113
113
114
114
# Build libsqlite3 using same configuration as the alpine linux main/sqlite package
115
- RUN curl -sSL https://www.sqlite.org/2022 /sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
115
+ RUN curl -sSL https://www.sqlite.org/2023 /sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
116
116
cd sqlite-autoconf-$SQLITE_VER && \
117
117
CFLAGS="-DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS3_PARENTHESIS -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_ENABLE_RTREE -DSQLITE_USE_URI -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1" \
118
118
CC="musl-gcc -fPIC -pie" \
You can’t perform that action at this time.
0 commit comments