sitemap_check 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Dockerfile +6 -1
- data/lib/sitemap_check.rb +1 -0
- data/lib/sitemap_check/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d17c56f576badb45b47424ed2942d34043d5dc84
|
|
4
|
+
data.tar.gz: fb96f18a0eecc280425f111883a0581aa4780609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 77e485131ee9707d33167eeb534a88d0ef06d6ac29e4f59fcfb3bd67ea334f0ed1ddac2562a100f0a01856da3675055c5032aac9cecdc5c0aaba8019c1ae953f
|
|
7
|
+
data.tar.gz: 7d5487bfe9f0486a9ce928f9462c3c9f96e4925b7dc3c406a5ca23f11e460ab8d52ba3ee076cc5583772f93af501be0a31206774f5794eb7a0986817d29d0733
|
data/Dockerfile
CHANGED
|
@@ -7,6 +7,7 @@ RUN apk add --no-cache --virtual .builddeps \
|
|
|
7
7
|
ruby-dev=2.3.3-r100 \
|
|
8
8
|
ruby=2.3.3-r100 \
|
|
9
9
|
zlib-dev \
|
|
10
|
+
libffi-dev \
|
|
10
11
|
&& gem install sitemap_check --no-document -v $VERSION \
|
|
11
12
|
&& runDeps="$( \
|
|
12
13
|
scanelf --needed --nobanner --recursive /usr/lib/ruby/gems \
|
|
@@ -15,6 +16,10 @@ RUN apk add --no-cache --virtual .builddeps \
|
|
|
15
16
|
| xargs -r apk info --installed \
|
|
16
17
|
| sort -u \
|
|
17
18
|
)" \
|
|
18
|
-
&& apk add --no-cache --virtual .rundeps
|
|
19
|
+
&& apk add --no-cache --virtual .rundeps \
|
|
20
|
+
$runDeps \
|
|
21
|
+
ca-certificates \
|
|
22
|
+
libcurl \
|
|
23
|
+
ruby=2.3.3-r100 \
|
|
19
24
|
&& apk del --no-cache .builddeps
|
|
20
25
|
ENTRYPOINT ["sitemap_check"]
|
data/lib/sitemap_check.rb
CHANGED