Sha256: d736c93f84a0437e141b96c838a09e98ae0e7424320092a35d98a7f059784f0d

Contents?: true

Size: 343 Bytes

Versions: 1

Compression:

Stored size: 343 Bytes

Contents

FROM ruby:2.7
RUN mkdir /planter
WORKDIR /planter
RUN gem install bundler:2.2.29
COPY ./docker/sources.list /etc/apt/sources.list
RUN apt-get update -y --allow-insecure-repositories || true
RUN apt-get install -y less vim
COPY ./docker/inputrc /root/.inputrc
COPY ./docker/bash_profile /root/.bash_profile
CMD ["/planter/scripts/runtests.sh"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
planter-cli-3.0.2 docker/Dockerfile-2.7