Sha256: 63fa8c77661ae9ee3e571b152ac583cf315b67bb3ef95fb6d03627b0c5ff2223
Contents?: true
Size: 872 Bytes
Versions: 36
Compression:
Stored size: 872 Bytes
Contents
FROM hausgold/ruby:2.5 MAINTAINER Hermann Mayer <hermann.mayer@hausgold.de> # Update system gem RUN gem update --system '3.3.26' # Install system packages and the latest bundler RUN apt-get update -yqqq && \ apt-get install -y \ build-essential locales sudo vim \ ca-certificates \ bash-completion inotify-tools && \ echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \ gem install bundler -v '~> 2.3.0' --no-document --no-prerelease # Add new web user RUN mkdir /app && \ adduser web --home /home/web --shell /bin/bash \ --disabled-password --gecos "" COPY config/docker/* /home/web/ RUN chown web:web -R /app /home/web /usr/local/bundle && \ mkdir -p /home/web/.ssh # Set the root password and grant root access to web RUN echo 'root:root' | chpasswd RUN echo 'web ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers WORKDIR /app
Version data entries
36 entries across 36 versions & 12 rubygems