Created
March 23, 2020 14:46
-
-
Save naren-dremio/6739704f9ded90b63c6147f0e21758d9 to your computer and use it in GitHub Desktop.
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 dremio/dremio-oss:4.1.8 | |
USER root | |
WORKDIR /opt/dremio/jars | |
# Add the plugin jar, you can also copy it from a local directory with COPY or ADD command | |
RUN wget https://<location of jar>.jar && \ | |
chown dremio <plugin>.jar | |
WORKDIR /opt/dremio | |
USER dremio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment