smartcloud 0.0.103 → 0.0.108

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: 8edfd80bda81005c84b11169ec7e442110eaa9d3f9a1307308c94fd1bec1504b
4
- data.tar.gz: b869ada10bafb46f972f6f38763e760549a679cd2e6a1fb0901c1e0237015980
3
+ metadata.gz: aea9438900ce4c811e7aae65af11c236f409a368e51004a94a0c290011e0f05b
4
+ data.tar.gz: 20d8359651c045fdbe5a9c8c6b200d25002ecd963634f620f7bff239a21b2a7f
5
5
  SHA512:
6
- metadata.gz: 616fde03f042d0b5930a64c1fef83d148145e3c5de7f0f4b272c7ed1e326564476ee12919bb58e3670941f5e30020242fbd556d8eca5d01cf513bf173fee1f98
7
- data.tar.gz: a9321c468b93ec7b2655c2380eb4b6d0b9163c2f58d8f096c6b12213d6bd5d9326d69ed708277145129bb83637489e756738da046fc996ad383ecafb252cf724
6
+ metadata.gz: 278ee8b22644bce5f89db156e20e092035d3052dbeea3ca64518feebccf56ceb714fd3ad67f7e5fd2adefe9e34d7be636eb98159c8a296656e183bbc8c58c0c0
7
+ data.tar.gz: b43d692c52505bb7bfcd6023df28c65d63719877eff90bd2bad1077532f84332c19f25840280da250aaf307b3ac0e1693484dc48ae9a6f73fb48229602757b37
@@ -14,22 +14,21 @@ RUN sed -i "s/999/99/" /etc/group && \
14
14
  adduser "$USER_NAME" "docker"
15
15
 
16
16
  # We need the following:
17
- # - fcgiwrap, because that is how nginx does CGI
18
- # IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING OPTION.
19
- # Original URL: https://github.com/gnosek/fcgiwrap
20
- # Custom URL: https://github.com/notr1ch/fcgiwrap
21
- COPY fcgiwrap /root/apk-packages/fcgiwrap
22
- RUN apk add /root/apk-packages/fcgiwrap/release/x86_64/fcgiwrap-1.1.0-r3.apk && \
23
- rm -rf /root/apk-packages
24
-
25
17
  # - git and git-daemon, because that gets us the git-http-backend CGI script
26
18
  # - ruby, to run smartcloud gem
19
+ # - fcgiwrap, because that is how nginx does CGI
20
+ # ----- IMPORTANT NOTE: This is custom build fcgiwrap package to account for NO_BUFFERING option.
21
+ # ----- Original fcgiwrap: https://github.com/gnosek/fcgiwrap
22
+ # ----- Custom fcgiwrap: https://github.com/notr1ch/fcgiwrap
27
23
  # - spawn-fcgi, to launch fcgiwrap and to create the unix socket
24
+ COPY fcgiwrap /root/apk-packages/fcgiwrap
28
25
  RUN apk add --update coreutils && \
29
26
  apk add --update git && \
30
27
  apk add --update git-daemon && \
31
28
  apk add --update ruby && \
29
+ apk add --update fcgiwrap --repository /root/apk-packages/fcgiwrap/release --allow-untrusted && \
32
30
  apk add --update spawn-fcgi && \
31
+ rm -rf /root/apk-packages && \
33
32
  rm -rf /var/cache/apk/*
34
33
 
35
34
  RUN gem install smartcloud --no-rdoc --no-ri
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartcloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.103
4
+ version: 0.0.108
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timeboard