Sha256: 9f0e09709dc2e102c4f613bafa5c0381309e9dd7d0d74bb078379e123352d2ea

Contents?: true

Size: 363 Bytes

Versions: 1

Compression:

Stored size: 363 Bytes

Contents

ARG RUBY_VERSION=3.0

FROM ruby:${RUBY_VERSION}

WORKDIR /app

RUN apt update && \
  apt install -y git postgresql-client && \
  apt clean && \
  rm -rf /var/lib/apt/lists/*

ENV BUNDLER_VERSION 2.4.22

RUN gem install bundler -v $BUNDLER_VERSION

COPY Gemfile ./

RUN bundle install -j $(nproc)

COPY . .

ENTRYPOINT ["entrypoints/entry.sh"]
CMD ["bin/prodder"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prodder-1.8.2 Dockerfile