smartcloud 0.0.57 → 0.0.58
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: 42d924ab065d2e704d4a6ee9b7553edccf9bfe4c347021b7350700763dd6dc87
|
|
4
|
+
data.tar.gz: 2361fa31d62cf1ab31c9ac29cee8d8bf18787e228ec4945198978d88d42c2858
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fed4824fea5a577012f162baaa622ef44f0ddab629e7c9adb75ad020fb991e115d521837221850719ced58deef619d6f385be2fc4a3aad7bead857ace1883533
|
|
7
|
+
data.tar.gz: b44bfd6c25c636b7e35800fe335c7f58ce2e4a90908db59ad8be87a347327cac1732002185b7a7d5698b9c540de0184fec08e2253d1b994f3f4aa0e3c1db05ec
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM
|
|
1
|
+
FROM ruby:2.6.3-alpine
|
|
2
2
|
MAINTAINER Timeboard <hello@timeboard.me>
|
|
3
3
|
|
|
4
4
|
# Setting up group and user
|
|
@@ -19,7 +19,6 @@ 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 && \
|
|
23
22
|
apk add --update fcgiwrap && \
|
|
24
23
|
apk add --update spawn-fcgi && \
|
|
25
24
|
rm -rf /var/cache/apk/*
|
|
@@ -15,7 +15,7 @@ RUN echo -e '#!/bin/sh\n\
|
|
|
15
15
|
cd /code\n\
|
|
16
16
|
test -f ./tmp/pids/server.pid && rf ./tmp/pids/server.pid; true\n\
|
|
17
17
|
\n\
|
|
18
|
-
echo "
|
|
18
|
+
echo "---------------------------------------------------------------"\n\
|
|
19
19
|
echo "-----> Performing bundle install"\n\
|
|
20
20
|
bundle install\n\
|
|
21
21
|
echo "-----> Compiling Assets"\n\
|
|
@@ -24,6 +24,7 @@ module Smartcloud
|
|
|
24
24
|
--env LETSENCRYPT_EMAIL=#{Smartcloud.config.sysadmin_email} \
|
|
25
25
|
--env LETSENCRYPT_TEST=#{Smartcloud.config.letsencrypt_test} \
|
|
26
26
|
--env GIT_PROJECT_ROOT=#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner/apps/repositories \
|
|
27
|
+
--env GIT_HTTP_EXPORT_ALL="" \
|
|
27
28
|
--expose='9000' \
|
|
28
29
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/config:#{Smartcloud.config.user_home_path}/.smartcloud/config' \
|
|
29
30
|
--volume='#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner:#{Smartcloud.config.user_home_path}/.smartcloud/grids/grid-runner' \
|