Sha256: d8a7bb1878cd1aa22dab1c607169c0ef720ca4a06d4c87a20cfd251948c71425
Contents?: true
Size: 737 Bytes
Versions: 78
Compression:
Stored size: 737 Bytes
Contents
FROM ruby:2.6.4-alpine3.10 MAINTAINER Timeboard <hello@timeboard.me> # Setting up user # - envs ARG USER_UID ARG USER_NAME # - Create user. RUN adduser --disabled-password --gecos "" --uid "$USER_UID" "$USER_NAME" # Install Ruby on Rails Essentials RUN apk add --update build-base && \ apk add --update tzdata && \ apk add --update nodejs && \ apk add --update yarn && \ apk add --update mariadb-dev && \ apk add --update imagemagick && \ apk add --update ffmpeg && \ apk add --update mupdf && \ apk add --update mupdf-tools && \ rm -rf /var/cache/apk/* USER "$USER_NAME" # Install bundler and god gems RUN gem install bundler && \ gem install god # Command to execute at container start CMD ["ruby", "buildpacker.rb"]
Version data entries
78 entries across 78 versions & 1 rubygems