brpm_module_brpm 0.1.37 → 0.1.38
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 +8 -8
- data/config.yml +1 -1
- data/docker/Dockerfile +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MmQ5MGUxYTVmY2Y4ZjU3ZWVkNDE5MzI3N2IxYjY5ZGY4YjgyMTJjNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OGExMzg0ZjgyYzUyYmM4MDRjNTRhMjMzM2E2NjliYTYxNTllZjlkNA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MzU3M2UxOTRkNDNiODQ3MWQ1MmJiMjZmNzNmODg1ZWNjMDJiYjY2NGNmZTMx
|
|
10
|
+
NDg5ZDI5NGQxMDFjZjNiOWVlNWRhMjg0NzEwM2RiZTk5OGU2OTRjMjdlNzRh
|
|
11
|
+
NDRhMzVjNWI5MjlmZGMwYWI1MzgwOTQ3MTRlZDE3MDcyYTNjOGM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjM0YmE1OWIxZmFmNTY3MzFlN2E5MDk2MWEwOGJhNDllODUyY2I1M2E0YjU4
|
|
14
|
+
NmMzMmEyZjI3YWQwZjRhYjNjN2RiNDcxMTNiMDgxYzg4OWU3YjNmOTNiOWUy
|
|
15
|
+
MDA1ZGYyZDBmYzVmZDMwMTZlMGUyNjA0YjY3ZGM0NzI1ODhhODU=
|
data/config.yml
CHANGED
data/docker/Dockerfile
CHANGED
|
@@ -2,9 +2,9 @@ FROM bmcrlm/brpm_content_framework
|
|
|
2
2
|
MAINTAINER Niek Bartholomeus <niek.bartholomeus@gmail.com>
|
|
3
3
|
|
|
4
4
|
ENV MODULE brpm_module_brpm
|
|
5
|
-
ENV VERSION 0.1.
|
|
5
|
+
ENV VERSION 0.1.37
|
|
6
6
|
|
|
7
|
-
RUN gem install
|
|
8
|
-
cd
|
|
7
|
+
RUN gem install $MODULE -v $VERSION && \
|
|
8
|
+
cd $GEM_HOME/gems/$MODULE-$VERSION && \
|
|
9
9
|
bundle install && \
|
|
10
|
-
rm -rf
|
|
10
|
+
rm -rf $GEM_HOME/cache
|