Sha256: f36e727dc8479149d5ddc1403ec7a4ed8a0446cd3d02daeda48d7706d2c07b52

Contents?: true

Size: 629 Bytes

Versions: 1

Compression:

Stored size: 629 Bytes

Contents

FROM quay.io/assemblyline/alpine:3.5

RUN apk add --no-cache --virtual .builddeps \
      build-base \
      ruby-dev=2.3.3-r100 \
      ruby=2.3.3-r100 \
      zlib-dev \
    && gem install sitemap_check -v $VERSION --no-document \
    && runDeps="$( \
      scanelf --needed --nobanner --recursive /usr/lib/ruby/gems \
        | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
        | sort -u \
        | xargs -r apk info --installed \
        | sort -u \
      )" \
    && apk add --no-cache --virtual .rundeps $runDeps ruby=2.3.3-r100 ca-certificates \
    && apk del --no-cache .builddeps
ENTRYPOINT ["sitemap_check"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sitemap_check-0.1.4 Dockerfile