We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8447234 commit 55f614eCopy full SHA for 55f614e
3.3/Dockerfile.fedora
@@ -30,9 +30,11 @@ LABEL summary="$SUMMARY" \
30
maintainer="SoftwareCollections.org <[email protected]>"
31
32
# Install required packages
33
-RUN INSTALL_PKGS="ruby ruby-devel rubygem-bundler ruby-bundled-gems rubygem-rake rubygems-devel redhat-rpm-config libffi-devel" && \
+RUN set -x && \
34
+ INSTALL_PKGS="ruby ruby-devel rubygem-bundler ruby-bundled-gems rubygem-rake rubygems-devel redhat-rpm-config libffi-devel" && \
35
dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
36
rpm -V $INSTALL_PKGS && \
37
+ ruby -v && \
38
ruby -v | grep -qe "^ruby $RUBY_VERSION\." && echo "Found VERSION $RUBY_VERSION" && \
39
dnf clean all
40
0 commit comments