From 199354752c08c173b648b2caf5a73d661639ddea Mon Sep 17 00:00:00 2001 From: "Maxim [maxirmx] Samsonov" Date: Thu, 16 Jan 2025 00:49:21 +0300 Subject: [PATCH] fix: do not finalize tebako setup --- alpine-3.17.Dockerfile | 5 +---- ubuntu-20.04.Dockerfile | 7 ++----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/alpine-3.17.Dockerfile b/alpine-3.17.Dockerfile index 3d91782..3595684 100644 --- a/alpine-3.17.Dockerfile +++ b/alpine-3.17.Dockerfile @@ -58,10 +58,7 @@ COPY test /root/test # Test and "warm up" since initialization is fully finished after the first packaging RUN gem install tebako && \ tebako setup -R 3.3.6 && \ - tebako setup -R 3.2.6 && \ - tebako press -R 3.3.6 -r /root/test -e tebako-test-run.rb -o ruby-3.3.6-package && \ - tebako press -R 3.2.6 -r /root/test -e tebako-test-run.rb -o ruby-3.2.6-package && \ - rm ruby-*-package + tebako setup -R 3.2.6 ENV PS1="\[\]\[\e]0;\u@\h: \w\a\]\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\]" CMD ["bash"] diff --git a/ubuntu-20.04.Dockerfile b/ubuntu-20.04.Dockerfile index 2ed6bb0..c68af0b 100644 --- a/ubuntu-20.04.Dockerfile +++ b/ubuntu-20.04.Dockerfile @@ -60,12 +60,9 @@ COPY test /root/test # Create packaging environment for Ruby 3.3.6, 3.2.6 # Test and "warm up" since initialization is fully finished after the first packaging -RUN gem install tebako && \ +RUN gem install tebako -v 0.12.2.rc1 && \ tebako setup -R 3.3.6 && \ - tebako setup -R 3.2.6 && \ - tebako press -R 3.3.6 -r /root/test -e tebako-test-run.rb -o ruby-3.3.6-package && \ - tebako press -R 3.2.6 -r /root/test -e tebako-test-run.rb -o ruby-3.2.6-package && \ - rm ruby-*-package + tebako setup -R 3.2.6 ENV PS1="\[\]\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ \[\]" CMD ["bash"]