Skip to content

Instantly share code, notes, and snippets.

@algas
Created April 18, 2017 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save algas/a6783eb6864f396bacfdf8cb9a052ef1 to your computer and use it in GitHub Desktop.
Save algas/a6783eb6864f396bacfdf8cb9a052ef1 to your computer and use it in GitHub Desktop.
Dockerfile for embulk
FROM java:8
ARG EMBULK_VERSION=0.8.18
RUN curl -L https://bintray.com/artifact/download/embulk/maven/embulk-${EMBULK_VERSION}.jar -o /opt/embulk.jar
WORKDIR /work
ENTRYPOINT ["java", "-jar", "/opt/embulk.jar"]
CMD ["--help"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment