Sha256: 4ca1a32612aa2946ef89917b16c49cd1f5e173803b8d1cdb2003e873f7a3afbf
Contents?: true
Size: 574 Bytes
Versions: 4
Compression:
Stored size: 574 Bytes
Contents
FROM ruby:2.5 MAINTAINER u2i <hello@u2i.com> RUN wget --quiet --output-document=dumb-init.deb \ https://github.com/Yelp/dumb-init/releases/download/v1.1.3/dumb-init_1.1.3_amd64.deb && \ dpkg --install dumb-init.deb && \ rm dumb-init.deb ARG host_uid RUN (getent passwd $host_uid > /dev/null) || adduser --quiet --disabled-password --gecos '' dummy --uid $host_uid RUN mkdir -p /gems && chown $host_uid /gems VOLUME /gems USER $host_uid RUN bundle config --global jobs 4 WORKDIR /code ENTRYPOINT ["/usr/bin/dumb-init", "--"] CMD ["tail", "-f", "/dev/null"]
Version data entries
4 entries across 4 versions & 1 rubygems