Sha256: f7ac30b2ec1d0a407cf2b0a3c9078a722544ad5afca359919f3713a4c455bcc1
Contents?: true
Size: 495 Bytes
Versions: 11
Compression:
Stored size: 495 Bytes
Contents
FROM ruby:2.5.0-stretch ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update -y && \ apt-get install -y locales task-english && \ rm -rf /var/lib/apt/lists/* RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && \ locale-gen en_US.UTF-8 && \ update-locale en_US.UTF-8 ENV LC_ALL=en_US.UTF-8 \ LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8 RUN mkdir /goodcheck WORKDIR /goodcheck COPY . /goodcheck/ RUN bundle install && bundle exec rake install RUN mkdir /work WORKDIR /work
Version data entries
11 entries across 11 versions & 1 rubygems