Sha256: c3acf0fbd52a95470f657f90dde72a13bb3f2e82660127d56fa01ab65ad97d0f
Contents?: true
Size: 418 Bytes
Versions: 18
Compression:
Stored size: 418 Bytes
Contents
FROM ubuntu:22.04 ENV INSTALL_PATH="/netssh" RUN apt update && apt install -y openssl ruby ruby-dev git build-essential WORKDIR $INSTALL_PATH COPY Gemfile net-ssh.gemspec $INSTALL_PATH/ COPY lib/net/ssh/version.rb $INSTALL_PATH/lib/net/ssh/version.rb RUN ls -l && gem install bundler && bundle install COPY . $INSTALL_PATH/ CMD openssl version && ruby -ropenssl -e 'puts OpenSSL::OPENSSL_VERSION' && rake test
Version data entries
18 entries across 18 versions & 4 rubygems