This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Rerun of JRuby drip speed test done by headius early 2013, at: https://gist.github.com/headius/4156388 | |
| # This rerun (done 2013-09-26) shows no noticable speed increase in using drip | |
| drip version | |
| drip version "0.2.3" package | |
| java -version | |
| java version "1.7.0_40" | |
| Java(TM) SE Runtime Environment (build 1.7.0_40-b40) | |
| Java HotSpot(TM) 64-Bit Server VM (build 24.0-b55, mixed mode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM openjdk:8-jdk-alpine | |
| VOLUME /tmp | |
| # see https://devcenter.heroku.com/articles/exec#enabling-docker-support | |
| RUN apk add --no-cache curl bash openssh python | |
| ADD src/main/docker/heroku-exec.sh /app/.profile.d/heroku-exec.sh | |
| RUN chmod a+x /app/.profile.d/heroku-exec.sh | |
| ADD src/main/docker/sh-wrapper.sh /bin/sh-wrapper.sh | |
| RUN chmod a+x /bin/sh-wrapper.sh |