smartcloud 0.0.59 → 0.0.60
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 +3 -2
- 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: c232578df6b9c605cd12ffea381afdc7b96be07fac4965d67428a4672450fb45
|
|
4
|
+
data.tar.gz: 380004759b4c0ada658329ccf2b3a35bab6d7ba9318fecbb46789a0496e46149
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf1f39b846803fcd00457b5f4a747006cb95149e5e21847ec71e91e310b5b7fc4e97559505825ad01fa974ce15cd7fc487c2dabf7c8d6fe17dbc28ea8143848f
|
|
7
|
+
data.tar.gz: b13454b0a7a6b00cbafe34d391e8efbc23e10fe66333cbe89b72ebdffeb655b2185c9dd8c1235d0c32323972fb6a5ed1ef048fd9d0d636d21d262b96dc260555
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM
|
|
1
|
+
FROM docker:latest
|
|
2
2
|
MAINTAINER Timeboard <hello@timeboard.me>
|
|
3
3
|
|
|
4
4
|
# Setting up group and user
|
|
@@ -19,11 +19,12 @@ RUN sed -i "s/999/99/" /etc/group && \
|
|
|
19
19
|
# - spawn-fcgi, to launch fcgiwrap and to create the unix socket
|
|
20
20
|
RUN apk add --update git && \
|
|
21
21
|
apk add --update git-daemon && \
|
|
22
|
+
apk add --update ruby && \
|
|
22
23
|
apk add --update fcgiwrap && \
|
|
23
24
|
apk add --update spawn-fcgi && \
|
|
24
25
|
rm -rf /var/cache/apk/*
|
|
25
26
|
|
|
26
|
-
RUN gem install smartcloud
|
|
27
|
+
RUN gem install smartcloud --no-rdoc --no-ri
|
|
27
28
|
|
|
28
29
|
# launch fcgiwrap via spawn-fcgi; launch nginx in the foreground
|
|
29
30
|
# so the container doesn't die on us; supposedly we should be
|