Skip to content

Instantly share code, notes, and snippets.

@belenaj
Last active February 4, 2020 18:01
Show Gist options
  • Save belenaj/bb58a8f26ee55997aafc3ebb1cee4bc7 to your computer and use it in GitHub Desktop.
Save belenaj/bb58a8f26ee55997aafc3ebb1cee4bc7 to your computer and use it in GitHub Desktop.
exasol-db Dockerfile with /exasol/cloud-storage-etl-udfs jar . https://github.com/exasol/cloud-storage-etl-udfs
FROM exasol/docker-db:latest
ENV EXA_BUCKET_PATH="/exa/data/bucketfs/bfsdefault/default"
ENV CLOUD_STORAGE_VERSION="0.6.0"
ENV JAR_FILENAME="cloud-storage-etl-udfs-$CLOUD_STORAGE_VERSION.jar"
ADD https://github.com/exasol/cloud-storage-etl-udfs/releases/download/v$CLOUD_STORAGE_VERSION/$JAR_FILENAME $EXA_BUCKET_PATH/$JAR_FILENAME
RUN chmod 775 $EXA_BUCKET_PATH/$JAR_FILENAME
#RUN chown exadefusr:exausers $EXA_BUCKET_PATH/$JAR_FILENAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment