Sha256: 2a7e1c3e37df566b266a20fe080ece87c055bcea40718545857fc22163baa71f

Contents?: true

Size: 338 Bytes

Versions: 3

Compression:

Stored size: 338 Bytes

Contents

FROM ruby:3.0.0
# RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN mkdir /howzit
WORKDIR /howzit
# COPY ./ /howzit/
RUN gem install bundler:2.2.29
RUN apt-get update -y
RUN apt-get install -y less vim
COPY ./docker/inputrc /root/.inputrc
COPY ./docker/bash_profile /root/.bash_profile
CMD ["scripts/runtests.sh"]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
howzit-2.1.18 docker/Dockerfile-3.0
howzit-2.1.16 docker/Dockerfile-3.0
howzit-2.1.15 docker/Dockerfile-3.0