smartcloud 0.0.106 → 0.0.111
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: 551610c81de01c4a00aebb41ee727a4941287c0e96f88d902d46f1db1fdd2144
|
|
4
|
+
data.tar.gz: f4a418b32d601cec1cdc49dc159550637ae9028303171014ce2a4605b175354d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c8468fa537f86a36f9c62132674ab3e15d7f42cd5bc0ccd59c46cd7ca1ab5fd47805521b11ec0330f5da5c006beff2ab3ffe1e96718b97a87f4285e5fc19217
|
|
7
|
+
data.tar.gz: d460e8b7cd012d9fce80869ebf8996c8463dacec50c9b03aa3f9b3dd68c362acbb504937d96aa918f7e6ad6044b67917ce99f04e701af5bd843582236d4a1911
|
|
@@ -15,20 +15,19 @@ RUN sed -i "s/999/99/" /etc/group && \
|
|
|
15
15
|
|
|
16
16
|
# We need the following:
|
|
17
17
|
# - fcgiwrap, because that is how nginx does CGI
|
|
18
|
-
# IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING
|
|
19
|
-
# Original
|
|
20
|
-
# Custom
|
|
21
|
-
COPY fcgiwrap/* /root/apk-packages/fcgiwrap/
|
|
22
|
-
RUN apk add /root/apk-packages/fcgiwrap/release fcgiwrap && \
|
|
23
|
-
rm -rf /root/apk-packages
|
|
24
|
-
|
|
18
|
+
# ----- IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING option.
|
|
19
|
+
# ----- Original fcgiwrap: https://github.com/gnosek/fcgiwrap
|
|
20
|
+
# ----- Custom fcgiwrap: https://github.com/notr1ch/fcgiwrap
|
|
25
21
|
# - git and git-daemon, because that gets us the git-http-backend CGI script
|
|
26
22
|
# - ruby, to run smartcloud gem
|
|
27
23
|
# - spawn-fcgi, to launch fcgiwrap and to create the unix socket
|
|
24
|
+
COPY fcgiwrap /root/apk-packages/fcgiwrap
|
|
25
|
+
RUN apk add /root/apk-packages/fcgiwrap/release/x86_64/fcgiwrap-1.1.0-r3.apk --allow-untrusted && \
|
|
26
|
+
rm -rf /root/apk-packages
|
|
28
27
|
RUN apk add --update coreutils && \
|
|
29
28
|
apk add --update git && \
|
|
30
29
|
apk add --update git-daemon && \
|
|
31
|
-
apk add --update ruby && \
|
|
30
|
+
apk add --update ruby && \
|
|
32
31
|
apk add --update spawn-fcgi && \
|
|
33
32
|
rm -rf /var/cache/apk/*
|
|
34
33
|
|