Sha256: 689e61fb93e6ecc05ea4ede89567779b664e9fe53332edc59cdfd74ae4d6156d
Contents?: true
Size: 629 Bytes
Versions: 2
Compression:
Stored size: 629 Bytes
Contents
FROM ruby:3.2.1 LABEL version="0.1" LABEL maintainer="chris" LABEL description="Dockerfile generated by dockerun" LABEL dockerun-info="https://github.com/chrisliaw/dockerun" RUN apt-get update && apt-get install -y sudo git curl build-essential RUN groupadd -f -g 1000 chris && \ useradd -u 1000 -g 1000 -m chris && \ usermod -aG sudo chris && \ echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers USER chris # from this point onwards, sudo is required for privileaged operation #RUN sudo apt-get install -y curl build-essential # other Dockerfile entries starts here CMD [ "/bin/bash", "--login" ]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ccrypto-ruby-0.1.2 | Dockerfile.dockerun |
ccrypto-ruby-0.1.1 | Dockerfile.dockerun |