smartcloud 0.0.109 → 0.0.110
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/smartcloud/grids/grid-runner/Dockerfile +5 -5
- 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: 5c0a0e038821e319a659dbd3bd1e0af74bb2e0eb2686c71c9d3862bce97df8fe
|
4
|
+
data.tar.gz: a34a0153042f878dc4cd1fff30983726483feafaaed2271e8047b9062279fe1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b8e16207636605ae2da4b15144b9b5917fc2e29c0158c6811d29d03f5c835168d9d374ac6159adfc85fa76cdab19b2084be7bd67797928aa392b9394d07bd7d
|
7
|
+
data.tar.gz: aae11a49001fc1ea08f9fc4fdd261a143c065861b56d1eed4ebd1740f1aacd62c8eac1f6c71a3a540ee7fafdbc08bedce1ae149a0dd24457a81ba8930509dd9c
|
@@ -14,21 +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
|
-
# - git and git-daemon, because that gets us the git-http-backend CGI script
|
18
|
-
# - ruby, to run smartcloud gem
|
19
17
|
# - fcgiwrap, because that is how nginx does CGI
|
20
18
|
# ----- IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING option.
|
21
19
|
# ----- Original fcgiwrap: https://github.com/gnosek/fcgiwrap
|
22
20
|
# ----- Custom fcgiwrap: https://github.com/notr1ch/fcgiwrap
|
21
|
+
# - git and git-daemon, because that gets us the git-http-backend CGI script
|
22
|
+
# - ruby, to run smartcloud gem
|
23
23
|
# - spawn-fcgi, to launch fcgiwrap and to create the unix socket
|
24
24
|
COPY fcgiwrap /root/apk-packages/fcgiwrap
|
25
|
+
RUN apk add fcgiwrap --update-cache --repository /root/apk-packages/fcgiwrap/release --allow-untrusted && \
|
26
|
+
rm -rf /root/apk-packages
|
25
27
|
RUN apk add --update coreutils && \
|
26
28
|
apk add --update git && \
|
27
29
|
apk add --update git-daemon && \
|
28
|
-
apk add --update ruby && \
|
29
|
-
apk add --repository /root/apk-packages/fcgiwrap/release --allow-untrusted fcgiwrap && \
|
30
|
+
apk add --update ruby && \
|
30
31
|
apk add --update spawn-fcgi && \
|
31
|
-
rm -rf /root/apk-packages && \
|
32
32
|
rm -rf /var/cache/apk/*
|
33
33
|
|
34
34
|
RUN gem install smartcloud --no-rdoc --no-ri
|