Created
July 23, 2022 09:57
-
-
Save marcriera/d2ef4a67ffda51b2acfc5d3a3e13c313 to your computer and use it in GitHub Desktop.
Okapi Longhorn on Docker
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 jetty:alpine | |
USER root | |
RUN mkdir -p /home/jetty | |
RUN chown -R jetty:jetty /home/jetty | |
RUN apk add --no-cache wget unzip | |
USER jetty | |
ENV URL https://okapiframework.org/binaries/longhorn | |
ENV FILE okapi-longhorn_all-platforms_1.43.0.zip | |
RUN wget -q $URL/$FILE && unzip $FILE -d /var/lib/jetty/webapps/ | |
RUN mkdir /home/jetty/Okapi-Longhorn-Files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment