Skip to content

Instantly share code, notes, and snippets.

@jamesmeneghello
Created August 13, 2018 06:39
Show Gist options
  • Select an option

  • Save jamesmeneghello/4b84b1cbd3dc0efeecd8f3eb8b3f9558 to your computer and use it in GitHub Desktop.

Select an option

Save jamesmeneghello/4b84b1cbd3dc0efeecd8f3eb8b3f9558 to your computer and use it in GitHub Desktop.
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