Sha256: 569d9a5e927e0a3637a9d51a8e4ccd5182dd53f6027b1ae0f52db81607777689

Contents?: true

Size: 444 Bytes

Versions: 1

Compression:

Stored size: 444 Bytes

Contents

ARG RUBY_VERSION
FROM ruby:$RUBY_VERSION-slim

VOLUME /workspace
WORKDIR /workspace

ARG PKG_VERSION
ARG GEM_HOST

RUN apt-get update && apt-get install -y curl gnupg2 && \
    curl https://cli-assets.heroku.com/install-ubuntu.sh | sh && \
    curl -O http://host.docker.internal/heroku-app-info-$PKG_VERSION.gem && \
    gem install heroku-app-info-$PKG_VERSION.gem && \
    rm heroku-app-info-$PKG_VERSION.gem

ENTRYPOINT ["heroku-app-info"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
heroku-app-info-0.1.1 Dockerfile