Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ LABEL org.label-schema.maintainer="Voxpupuli Team <voxpupuli@groups.io>" \
org.label-schema.schema-version="1.0" \
org.label-schema.dockerfile="/Containerfile"

ARG RUBYGEM_BUNDLER

# renovate: depName=bundler datasource=rubygems
ENV RUBYGEM_BUNDLER=${RUBYGEM_BUNDLER:-4.0.13}
Comment thread
bigon marked this conversation as resolved.

# Disable warnings for experimental features
ENV RUBYOPT="-W:no-experimental"

Expand All @@ -99,6 +104,7 @@ RUN apk update \
&& apk add --no-cache yamllint \
&& apk add --no-cache git \
&& apk add --no-cache curl \
&& gem install bundler -v ${RUBYGEM_BUNDLER} \
# CVE fixes - gems are deleted but are reinstalled in the bundler gemset
&& rm -rf /usr/local/lib/ruby/gems/*/gems/erb-* \
&& rm -rf /usr/local/lib/ruby/gems/*/specifications/default/erb-*.gemspec \
Expand Down
Loading