Skip to content

Commit a4cde2c

Browse files
authored
GH-47451: [Python][CI] Install tzdata-legacy in newer python-wheel-manylinux-test images (#47452)
### Rationale for this change The newer underlying docker image doesn't contain required timezones. ### What changes are included in this PR? Install `tzdata-legacy` on the docker image so timezones are available. This is already being done on other images. ### Are these changes tested? Yes, locally and via CI the failing jobs are now successful. ### Are there any user-facing changes? No * GitHub Issue: #47451 Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Raúl Cumplido <[email protected]>
1 parent 4d90dd7 commit a4cde2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/docker/python-wheel-manylinux-test.dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ RUN pip install -r /arrow/python/requirements-wheel-test.txt
2828
RUN apt-get update -y -q && \
2929
apt-get install -y -q \
3030
build-essential \
31-
python3-dev && \
31+
python3-dev \
32+
tzdata-legacy && \
3233
apt-get clean && \
3334
rm -rf /var/lib/apt/lists*
3435

0 commit comments

Comments
 (0)