Skip to content

Commit 556a303

Browse files
committed
Update ezbake-builder image for Java 17 and Ruby 3.2.9
1 parent 0076205 commit 556a303

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ FROM almalinux:9
22

33
WORKDIR /
44

5-
RUN dnf install -y --enablerepo=crb vim wget git rpm-build java-11-openjdk java-11-openjdk-devel libyaml-devel zlib zlib-devel gcc-c++ patch readline readline-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison sqlite-devel
5+
RUN dnf install -y --enablerepo=crb vim wget git rpm-build java-17-openjdk java-17-openjdk-devel libyaml-devel zlib zlib-devel gcc-c++ patch readline readline-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison sqlite-devel
66
RUN wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
77
RUN chmod a+x lein
88
RUN mv lein /usr/local/bin
99
RUN wget -q https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer -O- | bash
1010
# todo: it would be great if we could get the used ruby version from openvox-agent and use it here
1111
# and maybe don't randomly download rbenv and leiningen
1212
# and how bad is it that we hardcode java 11 above?
13-
RUN /bin/bash --login -c 'rbenv install 3.2.8'
14-
RUN /bin/bash --login -c 'rbenv global 3.2.8'
13+
RUN /bin/bash --login -c 'rbenv install 3.2.9'
14+
RUN /bin/bash --login -c 'rbenv global 3.2.9'
1515
RUN git config --global user.email "openvox@voxpupuli.org"
1616
RUN git config --global user.name "Vox Pupuli"
1717
RUN git config --global --add safe.directory /code

0 commit comments

Comments
 (0)