File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ FROM openjdk:8-jre-alpine
55MAINTAINER SourceLab.org <stephen.powis@gmail.com>
66
77# # Define what version of Kafka Webview to build the image using.
8- ENV WEBVIEW_VER="2.8.2 " \
9- WEBVIEW_SHA1="eff3487fe5efdd1dd18e5b96d28df650d1701b07 " \
8+ ENV WEBVIEW_VER="2.9.0 " \
9+ WEBVIEW_SHA1="c3ba9db0fb4baaa5dea04a9cfe53dfdea13faf58 " \
1010 WEBVIEW_HOME="/app"
1111
1212# Create app and data directories
@@ -24,6 +24,8 @@ RUN curl -fSL -o /tmp/kafka-webview-ui-bin.zip https://github.com/SourceLabOrg/k
2424# Verify SHA1 hash and extract.
2525RUN echo "${WEBVIEW_SHA1} /tmp/kafka-webview-ui-bin.zip" | sha1sum -c - && \
2626 unzip -d ${WEBVIEW_HOME} /tmp/kafka-webview-ui-bin.zip && \
27+ ls -l ${WEBVIEW_HOME} && \
28+ ls -l ${WEBVIEW_HOME}/kafka-webview-ui-${WEBVIEW_VER}/* && \
2729 mv ${WEBVIEW_HOME}/kafka-webview-ui-${WEBVIEW_VER}/* ${WEBVIEW_HOME} && \
2830 rm -rf ${WEBVIEW_HOME}/kafka-webview-ui-${WEBVIEW_VER}/ && \
2931 rm -rf ${WEBVIEW_HOME}/src && \
You can’t perform that action at this time.
0 commit comments