Created
August 13, 2018 06:39
-
-
Save jamesmeneghello/4b84b1cbd3dc0efeecd8f3eb8b3f9558 to your computer and use it in GitHub Desktop.
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 apacheignite/ignite:latest | |
| # install the psql client | |
| RUN apk --update add postgresql-client && rm -rf /var/cache/apk/* | |
| # Copy sh files and set permission | |
| COPY run.sh $IGNITE_HOME/ | |
| # Grant permission to execute entry point | |
| RUN chmod 555 $IGNITE_HOME/run.sh | |
| # CMD is already set by base image |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment