ghmk commited on
Commit
abbe908
·
1 Parent(s): aa0875c

Cache-bust: force fresh binary download (ubuntu-22.04, glibc 2.35)

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -12,8 +12,9 @@ RUN apt-get update && apt-get install -y \
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
  # Download the latest pre-built Linux binary from GitHub Releases
15
- # Rebuild trigger: ubuntu-22.04 binary (glibc 2.35) uploaded 2026-04-14
16
- RUN curl -fsSL \
 
17
  https://github.com/cronos3k/larql/releases/download/latest-linux/larql-linux-x86_64 \
18
  -o /usr/local/bin/larql \
19
  && chmod +x /usr/local/bin/larql
 
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
  # Download the latest pre-built Linux binary from GitHub Releases
15
+ # binary-date: 2026-04-14-ubuntu22 (glibc 2.35, cache-bust)
16
+ ARG BINARY_DATE=2026-04-14-ubuntu22
17
+ RUN echo "Fetching larql binary ${BINARY_DATE}" && curl -fsSL \
18
  https://github.com/cronos3k/larql/releases/download/latest-linux/larql-linux-x86_64 \
19
  -o /usr/local/bin/larql \
20
  && chmod +x /usr/local/bin/larql