Sha256: d0541bff88eaaacfb8981703f24cfbdc89347e3a0a913de219ffc12333722f86

Contents?: true

Size: 669 Bytes

Versions: 3

Compression:

Stored size: 669 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 && \
	gem install bundler

CMD ["buildpacker", "start"]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
smartcloud-0.2.0.beta2 lib/smartcloud/grids/grid-runner/buildpacks/rails/Dockerfile
smartcloud-0.2.0.beta1 lib/smartcloud/grids/grid-runner/buildpacks/rails/Dockerfile
smartcloud-0.1.0 lib/smartcloud/grids/grid-runner/buildpacks/rails/Dockerfile