Sha256: eba3e219eb711254218d438310b8f40f54371685108fd3a641de38a2045a428c

Contents?: true

Size: 1000 Bytes

Versions: 7

Compression:

Stored size: 1000 Bytes

Contents

ARG RUBY_VERSION
FROM ruby:${RUBY_VERSION}

ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update


# dx.snippet.start=templates/snippets/bundler/latest__bundler.dockerfile-snippet
# Based on documentation at https://guides.rubygems.org/command-reference/#gem-update
# based on the vendor's documentation
RUN echo "gem: --no-document" >> ~/.gemrc && \
    gem update --system && \
    gem install bundler

# dx.snippet.end=templates/snippets/bundler/latest__bundler.dockerfile-snippet


# dx.snippet.start=templates/snippets/vim/bullseye_vim.dockerfile-snippet
# Based on documentation at https://packages.debian.org/search?keywords=vim
# based on the vendor's documentation
ENV EDITOR=vim
RUN apt-get install -y vim && \
    echo "set -o vi" >> /root/.bashrc
# dx.snippet.end=templates/snippets/vim/bullseye_vim.dockerfile-snippet

# This entrypoint produces a nice help message and waits around for you to do
# something with the container.
COPY dx/show-help-in-app-container-then-wait.sh /root

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
gli-2.22.1 Dockerfile.dx
gli-2.22.0 Dockerfile.dx
with_clues-1.3.0 Dockerfile.dx
gli-2.21.5 Dockerfile.dx
gli-2.21.4 Dockerfile.dx
gli-2.21.3 Dockerfile.dx
gli-2.21.2 Dockerfile.dx