Sha256: fa3c883e7afe6f744fbc3aad16fe2fb2a3a6c61f7c40e586f47dd44d8ae523fa

Contents?: true

Size: 349 Bytes

Versions: 6

Compression:

Stored size: 349 Bytes

Contents

FROM ruby:2.6-alpine3.10
RUN apk --no-cache add git build-base ruby-dev \
  && cd /tmp/ \
  && git clone https://github.com/ninoseki/apullo.git \
  && cd apullo \
  && gem build apullo.gemspec -o apullo.gem \
  && gem install apullo.gem \
  && rm -rf /tmp/apullo \
  && apk del --purge git build-base ruby-dev

ENTRYPOINT ["apullo"]

CMD ["--help"]

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
apullo-0.2.0 docker/Dockerfile
apullo-0.1.5 docker/Dockerfile
apullo-0.1.4 docker/Dockerfile
apullo-0.1.3 docker/Dockerfile
apullo-0.1.2 docker/Dockerfile
apullo-0.1.1 docker/Dockerfile