smartcloud 0.0.190 → 0.0.191
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: 5cedda56b393c2437ecba4e649faa9ee17fc11b7a2dce2c2f962412381ad1417
|
4
|
+
data.tar.gz: 63a6d0cc855f8a1f89dd32bb1b186ef291804f6b7d7491923ed15306f9576f1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1ffadf16b45ec471bda54e0af4c0857f5c31eb8957710ffc30b6e1ca5f2d5475ef2dec816d66d6aa21d40685c3e26855900a2c476c957b6703bcc4cafe0773c
|
7
|
+
data.tar.gz: 99c82ce368757d21c52990e9347e2972cd265da602b17f9373cc829450374cd2c6baa5de9bdc337b0fee77faf38b4faa3dadc3f02649bf3d0c7d3a909cfab5eb
|
@@ -32,6 +32,10 @@ RUN apk add --update coreutils && \
|
|
32
32
|
apk add --update spawn-fcgi && \
|
33
33
|
rm -rf /var/cache/apk/*
|
34
34
|
|
35
|
-
|
35
|
+
# Generating entrypoint file
|
36
|
+
RUN echo -e '#!/bin/sh\n\
|
37
|
+
gem install --no-document --local smartcloud\n\
|
38
|
+
exec "$@"' >> /entrypoint; chmod +x /entrypoint;
|
39
|
+
|
36
40
|
|
37
41
|
CMD "git, fcgiwrap & spawn-fcgi installed"
|
@@ -23,9 +23,16 @@ RUN apk add --update build-base && \
|
|
23
23
|
USER "$USER_NAME"
|
24
24
|
|
25
25
|
# Install gems
|
26
|
-
RUN gem install
|
27
|
-
gem install bundler && \
|
26
|
+
RUN gem install bundler && \
|
28
27
|
gem install god
|
29
28
|
|
29
|
+
# Generating entrypoint file
|
30
|
+
RUN echo -e '#!/bin/sh\n\
|
31
|
+
gem install --no-document --local smartcloud\n\
|
32
|
+
exec "$@"' >> /entrypoint; chmod +x /entrypoint;
|
33
|
+
|
34
|
+
# Set entrypoint
|
35
|
+
ENTRYPOINT ["/entrypoint"]
|
36
|
+
|
30
37
|
# Command to execute at container start
|
31
38
|
CMD ["buildpacker", "start"]
|