Skip to content

Commit 87b7b9d

Browse files
committed
try updating deps
Signed-off-by: clux <[email protected]>
1 parent 27c5aeb commit 87b7b9d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Dockerfile.arm64

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ RUN chmod a+X /root
5454
# Convenience list of versions and variables for compilation later on
5555
# This helps continuing manually if anything breaks.
5656
ENV SSL_VER="1.1.1w" \
57-
CURL_VER="8.7.1" \
57+
CURL_VER="8.11.1" \
5858
ZLIB_VER="1.3.1" \
5959
PQ_VER="11.12" \
60-
SQLITE_VER="3450300" \
61-
PROTOBUF_VER="25.3" \
62-
SCCACHE_VER="0.8.0" \
60+
SQLITE_VER="3480000" \
61+
PROTOBUF_VER="29.2" \
62+
SCCACHE_VER="0.9.1" \
6363
CC=musl-gcc \
6464
PREFIX=/musl \
6565
PATH=/usr/local/bin:/root/.cargo/bin:$PATH \
@@ -128,7 +128,7 @@ RUN curl -sSL https://ftp.postgresql.org/pub/source/v$PQ_VER/postgresql-$PQ_VER.
128128
cd .. && rm -rf postgresql-$PQ_VER
129129

130130
# Build libsqlite3 using same configuration as the alpine linux main/sqlite package
131-
RUN curl -sSL https://www.sqlite.org/2024/sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
131+
RUN curl -sSL https://www.sqlite.org/2025/sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
132132
cd sqlite-autoconf-$SQLITE_VER && \
133133
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" \
134134
CC="musl-gcc -fPIC -pie" \

Dockerfile.x86_64

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ RUN chmod a+X /root
5353
# Convenience list of versions and variables for compilation later on
5454
# This helps continuing manually if anything breaks.
5555
ENV SSL_VER="1.1.1w" \
56-
CURL_VER="8.7.1" \
56+
CURL_VER="8.11.1" \
5757
ZLIB_VER="1.3.1" \
5858
PQ_VER="11.12" \
59-
SQLITE_VER="3450300" \
60-
PROTOBUF_VER="25.3" \
61-
SCCACHE_VER="0.8.0" \
59+
SQLITE_VER="3480000" \
60+
PROTOBUF_VER="29.2" \
61+
SCCACHE_VER="0.9.1" \
6262
CC=musl-gcc \
6363
PREFIX=/musl \
6464
PATH=/usr/local/bin:/root/.cargo/bin:$PATH \
@@ -127,7 +127,7 @@ RUN curl -sSL https://ftp.postgresql.org/pub/source/v$PQ_VER/postgresql-$PQ_VER.
127127
cd .. && rm -rf postgresql-$PQ_VER
128128

129129
# Build libsqlite3 using same configuration as the alpine linux main/sqlite package
130-
RUN curl -sSL https://www.sqlite.org/2024/sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
130+
RUN curl -sSL https://www.sqlite.org/2025/sqlite-autoconf-$SQLITE_VER.tar.gz | tar xz && \
131131
cd sqlite-autoconf-$SQLITE_VER && \
132132
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" \
133133
CC="musl-gcc -fPIC -pie" \

0 commit comments

Comments
 (0)