Sha256: ce0701f6b4f3d8ba3c907029dc64e768a21306a65f595cadb216a03e620283c9

Contents?: true

Size: 351 Bytes

Versions: 5

Compression:

Stored size: 351 Bytes

Contents

ARG RUBY_IMAGE=ruby:3.1.2-slim

FROM ${RUBY_IMAGE}

RUN apt-get update \
    && apt-get install -y build-essential git \
    && apt-get clean && rm -rf /var/lib/apt/lists/*

# install latest bundler
RUN gem install bundler

# Create app directory
WORKDIR /workspace

# Set bundle path
ENV BUNDLE_PATH /bundle

# Default to console
CMD ["bin/console"]

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
oscal-0.2.3 .docker/Dockerfile
oscal-0.2.2 .docker/Dockerfile
oscal-0.2.0 .docker/Dockerfile
coradoc-0.2.0 .docker/Dockerfile
coradoc-0.1.0 .docker/Dockerfile