You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 14, 2020. It is now read-only.
FROM mesosphere/jenkins-dind:0.7.0-alpine
USER root
# install necessary packages
RUN apk update && \
apk add bash ca-certificates curl git build-base perl \
libffi-dev bash zlib-dev linux-headers readline \
gmp-dev gdbm-dev db-dev libressl-dev coreutils \
readline-dev wget jq terraform mysql-client autoconf yaml-dev
# set env vars
ENV RBENV_ROOT /root/.rbenv
ENV PATH ${RBENV_ROOT}/shims:${RBENV_ROOT}/bin:$PATH
ENV RUBY_VERSIONS '2.4.1'
ENV RUBYGEMS_VERSION 3.0.2
# Set timezone for Jenkins Slave
ENV JENKINS_JAVA_OPTIONS="-Dorg.apache.commons.jelly.tags.fmt.timeZone=America/Chicago -Duser.timezone=America/Chicago"
# install rbenv and ruby-build
RUN git clone https://github.com/rbenv/rbenv.git ${RBENV_ROOT}
RUN git clone https://github.com/rbenv/ruby-build.git ${RBENV_ROOT}/plugins/ruby-build
RUN sh ${RBENV_ROOT}/plugins/ruby-build/install.sh
# install rubies and set global version
RUN echo 'eval "$(${RBENV_ROOT}/bin/rbenv init -)"' >> /etc/profile
RUN source /etc/profile
RUN for version in $RUBY_VERSIONS; do rbenv install "$version"; done
RUN rbenv global $RUBY_VERSIONS
RUN ${RBENV_ROOT}/shims/gem update --system ${RUBYGEMS_VERSION}
RUN ${RBENV_ROOT}/shims/gem install --no-document --force io-console unf json rake bundler
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
ERROR:
(Refer)[https://github.com/gliderlabs/docker-alpine/issues/261]'
Regenerate:
The text was updated successfully, but these errors were encountered: