Sha256: ae7a6d7d8225795550741aa11c82990689eb28d322dd1ec5d125454f4b09df14
Contents?: true
Size: 900 Bytes
Versions: 2
Compression:
Stored size: 900 Bytes
Contents
ARG RUBY_VERSION=3.1 FROM ruby:${RUBY_VERSION} RUN apt update && apt install -y openssh-server sudo netcat-openbsd \ && useradd --create-home --shell '/bin/bash' --comment 'NetSSH' 'net_ssh_1' \ && useradd --create-home --shell '/bin/bash' --comment 'NetSSH' 'net_ssh_2' \ && echo net_ssh_1:foopwd | chpasswd \ && echo net_ssh_2:foo2pwd | chpasswd \ && mkdir -p /home/net_ssh_1/.ssh \ && mkdir -p /home/net_ssh_2/.ssh \ && echo "net_ssh_1 ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers \ && echo "net_ssh_2 ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers \ && ssh-keygen -f /etc/ssh/users_ca -N '' ENV INSTALL_PATH="/netssh" WORKDIR $INSTALL_PATH COPY Gemfile net-ssh.gemspec $INSTALL_PATH/ COPY lib/net/ssh/version.rb $INSTALL_PATH/lib/net/ssh/version.rb RUN gem install bundler && bundle install COPY . $INSTALL_PATH/ CMD service ssh start && rake test && NET_SSH_NO_ED25519=1 rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
net-ssh-7.2.0 | Dockerfile |
net-ssh-7.2.0.rc1 | Dockerfile |