Sha256: aaf208789ec63acf97cc2b73757a26a9f22d00f42117e8867ad426c1ae120318

Contents?: true

Size: 427 Bytes

Versions: 56

Compression:

Stored size: 427 Bytes

Contents

ARG ALPINE_RUBY_VERSION

FROM ruby:${ALPINE_RUBY_VERSION}-alpine

RUN apk add --update --no-cache \
  bash \
  build-base \
  git \
  libxml2-dev \
  libxslt-dev \
  nodejs \
  shared-mime-info \
  sqlite-dev \
  tzdata \
  yarn

RUN mkdir /app
WORKDIR /app

RUN gem update --system && \
  gem install bundler && \
  bundle config build.nokogiri --use-system-libraries

COPY . .

EXPOSE 3000

CMD [".docker/app/entrypoint.sh"]

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
blacklight-6.25.0 .docker/app/Dockerfile
blacklight-7.28.0 .docker/app/Dockerfile
blacklight-7.27.1 .docker/app/Dockerfile
blacklight-7.27.0 .docker/app/Dockerfile
blacklight-7.26.1 .docker/app/Dockerfile
blacklight-7.26.0 .docker/app/Dockerfile
blacklight-7.25.3 .docker/app/Dockerfile
blacklight-7.25.2 .docker/app/Dockerfile
blacklight-7.25.1 .docker/app/Dockerfile
blacklight-7.25.0 .docker/app/Dockerfile
blacklight-7.24.0 .docker/app/Dockerfile
blacklight-7.23.0.1 .docker/app/Dockerfile
blacklight-7.23.0 .docker/app/Dockerfile
blacklight-7.22.2 .docker/app/Dockerfile
blacklight-7.22.1 .docker/app/Dockerfile
blacklight-7.22.0 .docker/app/Dockerfile