Last active
February 4, 2020 18:01
-
-
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
This file contains 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 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