Skip to content

Commit

Permalink
Add ruby 3.3 images for both OL8 and OL9
Browse files Browse the repository at this point in the history
  • Loading branch information
jakegt1 authored and Djelibeybi committed Sep 27, 2024
1 parent 4269331 commit df7825a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions OracleLinuxDevelopers/oraclelinux8/ruby/3.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2024 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.

FROM ghcr.io/oracle/oraclelinux:8


RUN dnf -y module enable ruby:3.3 && \
dnf -y install ruby ruby-libs ruby-devel ruby-irb \
rubygems rubygem-rake rubygem-bundler \
gcc make && \
rm -rf /var/cache/dnf

CMD ["irb"]
13 changes: 13 additions & 0 deletions OracleLinuxDevelopers/oraclelinux9/ruby/3.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2024 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.

FROM ghcr.io/oracle/oraclelinux:9


RUN dnf -y module enable ruby:3.3 && \
dnf -y install ruby ruby-libs ruby-devel ruby-irb \
rubygems rubygem-rake rubygem-bundler \
gcc make && \
rm -rf /var/cache/dnf

CMD ["irb"]

0 comments on commit df7825a

Please sign in to comment.