feat: added bundler to ruby image
All checks were successful
Build and publish "Ruby on Bookworm" image / Build and publish (push) Successful in 18s

Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
This commit is contained in:
Louis Vallat 2024-09-08 20:08:21 +02:00
parent 3cd83cb012
commit dbd904f4e4
Signed by: louis
SSH Key Fingerprint: SHA256:usb9EA8eIADT+Bt0Ne8ZkISCbgPSOYkVgS2iZqdZj8s

View File

@ -3,4 +3,5 @@ FROM node:20-bookworm@sha256:48db4f6ea21d134be744207225753a1730c4bc1b4cdf836d445
RUN apt-get update && \
apt-get install git -y && \
apt-get install ruby-full -y && \
gem install bundler && \
rm -rf /var/lib/apt/lists/*