Sha256: 1d312db9d6fcfc65ed4c4da3cb3b97d4e3d719f78403df2946d83d6cfe5042c4

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

FROM ruby:2.6.5-alpine

RUN apk add --update --no-cache tzdata openssh-client less git build-base
RUN cp /usr/share/zoneinfo/Asia/Yekaterinburg /etc/localtime && echo 'Asia/Yekaterinburg' > /etc/timezone

RUN ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts

ENV BUNDLE_APP_CONFIG /app/.bundle

RUN echo 'gem: --no-rdoc --no-ri --no-document' > /root/.gemrc
RUN gem install 'bundler:2.0.2' rubocop

WORKDIR /app

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
yandex_client-0.1.2 docker/Dockerfile.2.6