We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Dockerfile
SQL_ID
1 parent aa11834 commit 6376e59Copy full SHA for 6376e59
Dockerfile
@@ -93,7 +93,7 @@ ARG SQLITE_VERSION="3.49.2"
93
WORKDIR /src/sqlite
94
RUN <<EOF
95
# see product names and info at https://sqlite.org/download.html for why this line constructs the tarball name from a semver version
96
- SQL_ID="$(awk -F. '{print $1}' <<< "${SQLITE_VERSION}")$(printf "%02d" $(awk -F. '{print $2}' <<< "${SQLITE_VERSION}"))$(printf "%02d" $(awk -F. '{print $3}' <<< "${SQLITE_VERSION}"))00"
+ SQL_ID="$(echo -n "${SQLITE_VERSION}" | xargs -d '.' printf '%d%02d%02d00')"
97
curl -fsSL "https://www.sqlite.org/2025/sqlite-autoconf-${SQL_ID}.tar.gz" | tar -xz --strip-components=1
98
99
export CC="musl-gcc -fPIC -pie"
0 commit comments