Skip to content

Commit 2e68edf

Browse files
authored
Merge pull request #123 from clux/bump-zlib
Try fixing build by bumping versions
2 parents 06dc8cc + 0ccc699 commit 2e68edf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y \
3737

3838
# Install rust using rustup
3939
ARG CHANNEL
40-
ENV RUSTUP_VER="1.25.1" \
40+
ENV RUSTUP_VER="1.26.0" \
4141
RUST_ARCH="x86_64-unknown-linux-gnu" \
4242
CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
4343

@@ -53,10 +53,10 @@ 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.1q" \
56-
CURL_VER="7.85.0" \
57-
ZLIB_VER="1.2.13" \
56+
CURL_VER="8.2.1" \
57+
ZLIB_VER="1.3" \
5858
PQ_VER="11.12" \
59-
SQLITE_VER="3390400" \
59+
SQLITE_VER="3420000" \
6060
CC=musl-gcc \
6161
PREFIX=/musl \
6262
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.
112112
cd .. && rm -rf postgresql-$PQ_VER
113113

114114
# 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 && \
116116
cd sqlite-autoconf-$SQLITE_VER && \
117117
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" \
118118
CC="musl-gcc -fPIC -pie" \

0 commit comments

Comments
 (0)