lib/smartcloud/grids/grid-runner/Dockerfile in smartcloud-0.0.190 vs lib/smartcloud/grids/grid-runner/Dockerfile in smartcloud-0.0.191
- old
+ new
@@ -30,8 +30,12 @@
apk add --update git-daemon && \
apk add --update ruby && \
apk add --update spawn-fcgi && \
rm -rf /var/cache/apk/*
-RUN gem install smartcloud --no-rdoc --no-ri
+# Generating entrypoint file
+RUN echo -e '#!/bin/sh\n\
+gem install --no-document --local smartcloud\n\
+exec "$@"' >> /entrypoint; chmod +x /entrypoint;
+
CMD "git, fcgiwrap & spawn-fcgi installed"