smartcloud 0.0.191 → 0.0.192
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b08aae14de5119205ac1d149149c5c9eb1061c4c65425b4fb665a3770cc31826
|
|
4
|
+
data.tar.gz: a98c1326ef877b438f248bb9a1ae3f1440e87209dc6941fc3028225b0290a572
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f87948942a572b47c2d49ebd6db66a1ef00a5e1ba8fe1db8a78b8ce50811b6475cdefadf364eb02c707ed0133ef618f578531c4946700b50d9eb361905689b5
|
|
7
|
+
data.tar.gz: 6da0ad66a53a66f3d015cafb15d46c1621f3a647d27412199db5311fd680cad4752e472f34aa07582c78101892fb7d227ecc4db554d09d7d0c9bea4086bf1838
|
|
@@ -35,7 +35,9 @@ RUN apk add --update coreutils && \
|
|
|
35
35
|
# Generating entrypoint file
|
|
36
36
|
RUN echo -e '#!/bin/sh\n\
|
|
37
37
|
gem install --no-document --local smartcloud\n\
|
|
38
|
-
exec "$@"' >> /entrypoint; chmod +x /entrypoint
|
|
38
|
+
exec "$@"' >> /entrypoint; chmod +x /entrypoint
|
|
39
39
|
|
|
40
|
+
# Set entrypoint
|
|
41
|
+
ENTRYPOINT ["/entrypoint"]
|
|
40
42
|
|
|
41
43
|
CMD "git, fcgiwrap & spawn-fcgi installed"
|
|
@@ -29,7 +29,7 @@ RUN gem install bundler && \
|
|
|
29
29
|
# Generating entrypoint file
|
|
30
30
|
RUN echo -e '#!/bin/sh\n\
|
|
31
31
|
gem install --no-document --local smartcloud\n\
|
|
32
|
-
exec "$@"' >> /entrypoint; chmod +x /entrypoint
|
|
32
|
+
exec "$@"' >> /entrypoint; chmod +x /entrypoint
|
|
33
33
|
|
|
34
34
|
# Set entrypoint
|
|
35
35
|
ENTRYPOINT ["/entrypoint"]
|
|
@@ -117,7 +117,7 @@ module Smartcloud
|
|
|
117
117
|
--build-arg DOCKER_GID=`getent group docker | cut -d: -f3` \
|
|
118
118
|
--build-arg USER_UID=`id -u` \
|
|
119
119
|
--build-arg USER_NAME=`id -un` \
|
|
120
|
-
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner"
|
|
120
|
+
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner")
|
|
121
121
|
puts "done"
|
|
122
122
|
end
|
|
123
123
|
end
|
|
@@ -127,7 +127,7 @@ module Smartcloud
|
|
|
127
127
|
if system("docker image build -t smartcloud/buildpacks/rails \
|
|
128
128
|
--build-arg USER_UID=`id -u` \
|
|
129
129
|
--build-arg USER_NAME=`id -un` \
|
|
130
|
-
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner/buildpacks/rails"
|
|
130
|
+
#{Smartcloud.config.root_path}/lib/smartcloud/grids/grid-runner/buildpacks/rails")
|
|
131
131
|
puts "done"
|
|
132
132
|
end
|
|
133
133
|
end
|