Skip to content

Commit

Permalink
Install Maven in ManyLinux 2014 Images (#305)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Graeb <[email protected]>
  • Loading branch information
waahm7 and graebm authored Oct 28, 2024
1 parent 8c571f2 commit 7386bcf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/docker-images/manylinux1-x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ RUN curl -sSL https://d19elf31gohf1l.cloudfront.net/_binaries/cmake/cmake-3.13-m
###############################################################################
ADD entrypoint.sh /usr/local/bin/builder
RUN chmod a+x /usr/local/bin/builder
ENTRYPOINT ["/usr/local/bin/builder"]
ENTRYPOINT ["/usr/local/bin/builder"]
2 changes: 2 additions & 0 deletions .github/docker-images/manylinux2014-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ FROM quay.io/pypa/manylinux2014_x86_64
# Basics
###############################################################################
RUN yum -y install sudo cmake3 \
# used in java release pipeline
maven \
&& yum clean all \
&& ln -s `which cmake3` /usr/bin/cmake \
&& ln -s `which ctest3` /usr/bin/ctest \
Expand Down
2 changes: 2 additions & 0 deletions .github/docker-images/manylinux2014-x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ FROM quay.io/pypa/manylinux2014_i686
# Basics
###############################################################################
RUN yum -y install sudo \
# used in java release pipeline
maven \
&& yum clean all

###############################################################################
Expand Down

0 comments on commit 7386bcf

Please sign in to comment.