smartcloud 0.0.195 → 0.0.196
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12c68137078bb5c2eea602f6e7fcca93ed026a3606a23c19684da82d170ee70e
|
4
|
+
data.tar.gz: 2fbdeb32a7ef27799d30efb0f338f7b8ce2734834c85926bb142b019a097220b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54f5834488df66fc92cf0ec5836d8fe467c74ae2ef24d43875c30d16f60b57955cc51a5027c18415138aa914ba8246f27bd61d1e7f8a62e9e780ba54f522809c
|
7
|
+
data.tar.gz: 6bd5e82645a365094bb0026336cbd140b66e8a21df876857cb7489d58878f15149b8c2dc0b461979cc9ed7120483f4cc1e01b4b64bd78e57541cb752add66665
|
@@ -38,9 +38,9 @@ WORKDIR "/home/$USER_NAME/.smartcloud/grids/grid-runner/apps"
|
|
38
38
|
# Generating entrypoint file
|
39
39
|
RUN echo -e '#!/bin/sh\n\
|
40
40
|
gem install --no-document --local smartcloud\n\
|
41
|
-
exec "$@"' >> "/home/$
|
41
|
+
exec "$@"' >> "/home/$(whoami)/entrypoint"; chmod +x "/home/$(whoami)/entrypoint"
|
42
42
|
|
43
43
|
# Set entrypoint
|
44
|
-
ENTRYPOINT "/home/$
|
44
|
+
ENTRYPOINT "/home/$(whoami)/entrypoint"
|
45
45
|
|
46
46
|
CMD ["spawn-fcgi", "-n", "-p", "9000", "/usr/bin/fcgiwrap", "-f"]
|
@@ -30,10 +30,10 @@ RUN gem install bundler && \
|
|
30
30
|
# Generating entrypoint file
|
31
31
|
RUN echo -e '#!/bin/sh\n\
|
32
32
|
gem install --no-document --local smartcloud\n\
|
33
|
-
exec "$@"' >> "/home/$
|
33
|
+
exec "$@"' >> "/home/$(whoami)/entrypoint"; chmod +x "/home/$(whoami)/entrypoint"
|
34
34
|
|
35
35
|
# Set entrypoint
|
36
|
-
ENTRYPOINT "/home/$
|
36
|
+
ENTRYPOINT "/home/$(whoami)/entrypoint"
|
37
37
|
|
38
38
|
# Command to execute at container start
|
39
39
|
CMD ["buildpacker", "start"]
|