Sha256: 04f5660724ccb7184fc4129e00ffc6b5ac0142e7b1ae2e1d74bd1a58bd50076d

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

FROM ruby:3.3.0
# RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
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.3