Sha256: 316c502fe6b5f29f49d589d2d44d92f6857e27bab3a3661da3e5a5fc58331f1d

Contents?: true

Size: 741 Bytes

Versions: 4

Compression:

Stored size: 741 Bytes

Contents

# Dockerfile
# Use ruby image to build our own image
FROM ruby:3.0.2

ARG APP_ROOT=/app
ARG BUILD_PACKAGES="\
    vim \
    "

# token for fetching private gems https://www.surminus.com/blog/installing-private-gems-during-a-docker-build/
ARG BUNDLE_GITHUB__COM

# We specify everything will happen within the /app folder inside the container
WORKDIR $APP_ROOT

ENV PATH="${APP_ROOT}/bin:${PATH}"

RUN apt-get update -qq && apt-get install -y --fix-missing --no-install-recommends $BUILD_PACKAGES && \
    apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# We install all the dependencies
# RUN bundle config set jobs "$(getconf _NPROCESSORS_ONLN)" && \
#     bundle config set path /usr/local/bundle && \
#     bundle install

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ubersicht-ruby-sdk-0.5.0 Dockerfile
ubersicht-ruby-sdk-0.4.0 Dockerfile
ubersicht-ruby-sdk-0.3.0 Dockerfile
ubersicht-ruby-sdk-0.2.0 Dockerfile