Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docker/amazonlinux23/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
# ORC compile for Amazon Linux 2023
#

FROM amazonlinux:2023
FROM amazonlinux:2023.9.20250929.0
LABEL org.opencontainers.image.authors="Apache ORC project <dev@orc.apache.org>"
LABEL org.opencontainers.image.licenses="Apache-2.0"
LABEL org.opencontainers.image.ref.name="Apache ORC on Amazon Linux 2023"
LABEL org.opencontainers.image.version=""

RUN yum check-update || true
RUN yum install -y \
cmake3 \
curl-devel \
cyrus-sasl-devel \
expat-devel \
Expand All @@ -42,6 +41,12 @@ RUN yum install -y \
zlib-devel \
java-17-amazon-corretto-devel

ARG cmake=3.26.0
RUN curl -L \
"https://github.com/Kitware/CMake/releases/download/v${cmake}/cmake-${cmake}-linux-$(uname -m).tar.gz" | \
tar -xzf - --directory /usr/local --strip-components=1 && \
ln -fs /usr/local/bin/cmake /usr/bin/cmake

ENV TZ=America/Los_Angeles
WORKDIR /root
VOLUME /root/.m2/repository
Expand Down
Loading