Skip to content

Commit

Permalink
fix: replace log4j with reload4j (#41)
Browse files Browse the repository at this point in the history
* replace log4j with reload4j

* typo
  • Loading branch information
Tingweiftw authored Dec 1, 2023
1 parent 19f6f70 commit 63463b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ RUN set -euo pipefail && \
rm zeppelin-${ZEPPELIN_VERSION}-bin-netinst.tgz; \
:

# Download reload4j jar
ARG RELOAD4J_VERSION="1.2.25"
RUN set -euo pipefail && \
wget "https://repo1.maven.org/maven2/ch/qos/reload4j/reload4j/${RELOAD4J_VERSION}/reload4j-${RELOAD4J_VERSION}.jar" -O /zeppelin/lib/reload4j-${RELOAD4J_VERSION}.jar; \
rm /zeppelin/lib/log4j-1.2.17.jar; \
:

# Install GitHub Release Assets FUSE mount CLI (requires fuse install)
ARG GHAFS_VERSION="v0.1.3"
RUN set -euo pipefail && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ docker build . -t zeppelin \
--build-arg SCALA_VERSION="${SCALA_VERSION}" \
--build-arg JAVA_VERSION="${JAVA_VERSION}"

docker run --rm -it --name zeppelin -p 8080:8080 zeppelin
docker run -d --rm -it --name zeppelin -p 8080:8080 zeppelin
```

Wait a while and then access <http://localhost:8080/> in your web browser.
Expand Down

0 comments on commit 63463b9

Please sign in to comment.