Sha256: d1c590d4ea347829b270483c8a21fd3644b658c95c31d5cb2dc2009bc43448e2
Contents?: true
Size: 355 Bytes
Versions: 9
Compression:
Stored size: 355 Bytes
Contents
FROM ruby:3.2.2-alpine3.19 ARG MIHARI_VERSION=0.0.0 RUN apk --no-cache add build-base ruby-dev libpq-dev && \ echo 'gem: --no-document' >> /usr/local/etc/gemrc && \ gem install pg && \ gem install mihari -v ${MIHARI_VERSION} && \ apk del --purge build-base ruby-dev && \ rm -rf /usr/local/bundle/cache/* ENTRYPOINT ["mihari"] CMD ["--help"]
Version data entries
9 entries across 9 versions & 1 rubygems