Sha256: 05be27a71587ff59ed4356b2844f412388f9989b5b43a5b597bb07c8c6cdd4bb
Contents?: true
Size: 877 Bytes
Versions: 7
Compression:
Stored size: 877 Bytes
Contents
FROM ruby:2.7.0-alpine3.11 LABEL maintainer="Timeboard <hello@timeboard.me>" # User # --- Fix to change gid of 999 to 99 so that addgroup is free to create a group with 999 as gid ARG USER_NAME ARG USER_UID ARG DOCKER_GID RUN sed -i "s/999/99/" /etc/group && \ adduser --disabled-password --gecos "" --uid "$USER_UID" "$USER_NAME" && \ addgroup --gid "$DOCKER_GID" "docker" && adduser "$USER_NAME" "docker" # Essentials RUN apk add --update build-base && \ apk add --update docker && \ apk add --update git && \ rm -rf /var/cache/apk/* # Smartcloud Gem ARG SMARTCLOUD_VERSION COPY ./smartcloud-$SMARTCLOUD_VERSION.gem ./smartcloud-$SMARTCLOUD_VERSION.gem RUN gem install --no-document smartcloud-$SMARTCLOUD_VERSION.gem && \ rm ./smartcloud-$SMARTCLOUD_VERSION.gem # Smartcloud Master Key ARG SMARTCLOUD_MASTER_KEY ENV SMARTCLOUD_MASTER_KEY=$SMARTCLOUD_MASTER_KEY
Version data entries
7 entries across 7 versions & 1 rubygems