Sha256: ec602b3da604e7f76d73d4896ac98812d13957f8481f90310fb63bb17806a93a
Contents?: true
Size: 675 Bytes
Versions: 5
Compression:
Stored size: 675 Bytes
Contents
FROM ruby:2.6.4-alpine3.10 LABEL maintainer="Timeboard <hello@timeboard.me>" # User ARG USER_UID ARG USER_NAME RUN adduser --disabled-password --gecos "" --uid "$USER_UID" "$USER_NAME" # 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/* # Privileges USER "$USER_NAME" WORKDIR "/app" # Gems RUN gem install smartcloud --pre && \ gem install bundler CMD ["buildpacker", "start"]
Version data entries
5 entries across 5 versions & 1 rubygems