Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Dockerfiles refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed May 8, 2024
1 parent 7568dd9 commit df30d9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jruby.docker
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM ${REGISTRY}/essentialkaos/rbinstall:ol8 as installer

ARG RUBY_VERSION=9.3.9.0

RUN rbinstall jruby-${RUBY_VERSION} --no-progress
RUN rbinstall jruby-${RUBY_VERSION}

## FINAL IMAGE ################################################################

Expand Down
2 changes: 1 addition & 1 deletion ruby-jemalloc.docker
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM ${REGISTRY}/essentialkaos/rbinstall:ol8 as installer
ARG RUBY_VERSION=3.2.0
ARG WITH_STATIC=no

RUN rbinstall ${RUBY_VERSION}-jemalloc --no-progress && \
RUN rbinstall ${RUBY_VERSION}-jemalloc && \
if [ "${WITH_STATIC}" != "no" ] ; then rm -f /usr/local/rbenv/versions/${RUBY_VERSION}/lib/libruby-static.a ; fi

## FINAL IMAGE #################################################################
Expand Down
2 changes: 1 addition & 1 deletion ruby.docker
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FROM ${REGISTRY}/essentialkaos/rbinstall:ol8 as installer
ARG RUBY_VERSION=3.2.0
ARG WITH_STATIC=no

RUN rbinstall ${RUBY_VERSION} --no-progress && \
RUN rbinstall ${RUBY_VERSION} && \
if [ "${WITH_STATIC}" != "no" ] ; then rm -f /usr/local/rbenv/versions/${RUBY_VERSION}/lib/libruby-static.a ; fi

## FINAL IMAGE #################################################################
Expand Down

0 comments on commit df30d9b

Please sign in to comment.