smartcloud 0.0.103 → 0.0.108
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/lib/smartcloud/grids/grid-runner/Dockerfile +7 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aea9438900ce4c811e7aae65af11c236f409a368e51004a94a0c290011e0f05b
|
|
4
|
+
data.tar.gz: 20d8359651c045fdbe5a9c8c6b200d25002ecd963634f620f7bff239a21b2a7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 278ee8b22644bce5f89db156e20e092035d3052dbeea3ca64518feebccf56ceb714fd3ad67f7e5fd2adefe9e34d7be636eb98159c8a296656e183bbc8c58c0c0
|
|
7
|
+
data.tar.gz: b43d692c52505bb7bfcd6023df28c65d63719877eff90bd2bad1077532f84332c19f25840280da250aaf307b3ac0e1693484dc48ae9a6f73fb48229602757b37
|
|
@@ -14,22 +14,21 @@ RUN sed -i "s/999/99/" /etc/group && \
|
|
|
14
14
|
adduser "$USER_NAME" "docker"
|
|
15
15
|
|
|
16
16
|
# We need the following:
|
|
17
|
-
# - fcgiwrap, because that is how nginx does CGI
|
|
18
|
-
# IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING OPTION.
|
|
19
|
-
# Original URL: https://github.com/gnosek/fcgiwrap
|
|
20
|
-
# Custom URL: https://github.com/notr1ch/fcgiwrap
|
|
21
|
-
COPY fcgiwrap /root/apk-packages/fcgiwrap
|
|
22
|
-
RUN apk add /root/apk-packages/fcgiwrap/release/x86_64/fcgiwrap-1.1.0-r3.apk && \
|
|
23
|
-
rm -rf /root/apk-packages
|
|
24
|
-
|
|
25
17
|
# - git and git-daemon, because that gets us the git-http-backend CGI script
|
|
26
18
|
# - ruby, to run smartcloud gem
|
|
19
|
+
# - fcgiwrap, because that is how nginx does CGI
|
|
20
|
+
# ----- IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING option.
|
|
21
|
+
# ----- Original fcgiwrap: https://github.com/gnosek/fcgiwrap
|
|
22
|
+
# ----- Custom fcgiwrap: https://github.com/notr1ch/fcgiwrap
|
|
27
23
|
# - spawn-fcgi, to launch fcgiwrap and to create the unix socket
|
|
24
|
+
COPY fcgiwrap /root/apk-packages/fcgiwrap
|
|
28
25
|
RUN apk add --update coreutils && \
|
|
29
26
|
apk add --update git && \
|
|
30
27
|
apk add --update git-daemon && \
|
|
31
28
|
apk add --update ruby && \
|
|
29
|
+
apk add --update fcgiwrap --repository /root/apk-packages/fcgiwrap/release --allow-untrusted && \
|
|
32
30
|
apk add --update spawn-fcgi && \
|
|
31
|
+
rm -rf /root/apk-packages && \
|
|
33
32
|
rm -rf /var/cache/apk/*
|
|
34
33
|
|
|
35
34
|
RUN gem install smartcloud --no-rdoc --no-ri
|