orchestration 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/orchestration/templates/Dockerfile.erb +1 -1
- data/lib/orchestration/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e49d1834028ab1854b554f998dcd5779e5af3474
|
4
|
+
data.tar.gz: 35185f308b9bc16794a906f9b7e4bfec8b790355
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f1b206a4458192418ef09dcac765fc1fc3c85b94b0f724f6009eadd20732f8e08cd9415395ce349740857a1a9f87a236f585f6dda77e03ba1838fe52bb200bd
|
7
|
+
data.tar.gz: e76e69bdf49ec909149510d8664776c1ff0c91e92a7f26eabeff70969bf987fc9910896127d9eac6ae7bca94c48fcee9fca6eed1e8a68150ecb261b98e6a1030
|
data/README.md
CHANGED
@@ -19,6 +19,6 @@ RUN . /root/.bashrc && yarn install
|
|
19
19
|
<% end %>
|
20
20
|
COPY entrypoint.sh /
|
21
21
|
ADD .build/context.tar.gz .
|
22
|
-
<% if defined?(Webpacker) %>RUN . /root/.bashrc && yarn install && bundle exec rake assets:precompile<%
|
22
|
+
<% if defined?(Webpacker) %>RUN . /root/.bashrc && yarn install && bundle exec rake assets:precompile<% elsif Rake::Task.tasks.map(&:name).include?('assets:precompile') %>RUN bundle exec rake assets:precompile<% end %>
|
23
23
|
ENTRYPOINT ["/entrypoint.sh"]
|
24
24
|
CMD ["bundle", "exec", "unicorn", "-c", "/app/config/unicorn.rb"]
|