Sha256: 1b9f7c943cd1741b05991343140fb06bd66cf6a283c34803c5bf7130414a740b

Contents?: true

Size: 345 Bytes

Versions: 1

Compression:

Stored size: 345 Bytes

Contents

FROM ruby:3.0.0
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-3.0