Skip to content

Commit

Permalink
Ruby 3.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Earlopain authored Jan 17, 2025
1 parent 84c4d01 commit a3f2185
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ FROM build-base AS ruby-3.2
RUN ~/.rbenv/bin/rbenv install 3.2.6

FROM build-base AS ruby-3.3
RUN ~/.rbenv/bin/rbenv install 3.3.6
RUN ~/.rbenv/bin/rbenv install 3.3.7

FROM build-base AS ruby-3.4
RUN ~/.rbenv/bin/rbenv install 3.4.1
Expand All @@ -64,9 +64,9 @@ COPY --from=ruby-2.7 /root/.rbenv/versions/2.7.8 /root/.rbenv/versions/2.7.
COPY --from=ruby-3.0 /root/.rbenv/versions/3.0.7 /root/.rbenv/versions/3.0.7
COPY --from=ruby-3.1 /root/.rbenv/versions/3.1.6 /root/.rbenv/versions/3.1.6
COPY --from=ruby-3.2 /root/.rbenv/versions/3.2.6 /root/.rbenv/versions/3.2.6
COPY --from=ruby-3.3 /root/.rbenv/versions/3.3.6 /root/.rbenv/versions/3.3.6
COPY --from=ruby-3.3 /root/.rbenv/versions/3.3.7 /root/.rbenv/versions/3.3.7
COPY --from=ruby-3.4 /root/.rbenv/versions/3.4.1 /root/.rbenv/versions/3.4.1

# Probably not working with gems/bundler but who cares
ENTRYPOINT ["/root/.rbenv/versions/3.3.6/bin/ruby", "/app/lib/cli.rb"]
ENTRYPOINT ["/root/.rbenv/versions/3.4.1/bin/ruby", "/app/lib/cli.rb"]
CMD ["--help"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def foo(...) super(...) {} end
-e:1: both block arg and actual block given
-e: compile error (SyntaxError)

==================3.3.6==================
==================3.3.7=================
Syntax OK

==================3.4.1==================
Expand Down

0 comments on commit a3f2185

Please sign in to comment.