Skip to content

Commit 726a9fc

Browse files
authored
ci: force rebuild of Docker images for Linux packaging (#3658)
Closes #3619. Recently, Apache Arrow 22.0.0 is released. If we don't rebuild our Docker images, we still use old Apache Arrow for building deb/RPM. Our deb/RPM should use the latest Apache Arrow.
1 parent a86b616 commit 726a9fc

File tree

7 files changed

+14
-0
lines changed

7 files changed

+14
-0
lines changed

ci/linux-packages/apt/debian-bookworm/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=debian:bookworm
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
RUN \
2224
echo "debconf debconf/frontend select Noninteractive" | \
2325
debconf-set-selections

ci/linux-packages/apt/debian-trixie/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=debian:trixie
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
RUN \
2224
echo "debconf debconf/frontend select Noninteractive" | \
2325
debconf-set-selections

ci/linux-packages/apt/ubuntu-jammy/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=ubuntu:jammy
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
RUN \
2224
echo "debconf debconf/frontend select Noninteractive" | \
2325
debconf-set-selections

ci/linux-packages/apt/ubuntu-noble/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=ubuntu:noble
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
RUN \
2224
echo "debconf debconf/frontend select Noninteractive" | \
2325
debconf-set-selections

ci/linux-packages/yum/almalinux-10/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=almalinux:10
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
ARG DEBUG
2224

2325
RUN \

ci/linux-packages/yum/almalinux-8/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=almalinux:8
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
ARG DEBUG
2224

2325
RUN \

ci/linux-packages/yum/almalinux-9/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
ARG FROM=almalinux:9
1919
FROM ${FROM}
2020

21+
ENV IMAGE_VERSION=2025-10-31
22+
2123
ARG DEBUG
2224

2325
RUN \

0 commit comments

Comments
 (0)