Skip to content

Commit

Permalink
Update DockerFile for 2.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Powis committed Jun 19, 2019
1 parent bc27682 commit 1f18abb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ FROM openjdk:8-jre-alpine
MAINTAINER SourceLab.org <[email protected]>

## Define what version of Kafka Webview to build the image using.
ENV WEBVIEW_VER="2.2.0" \
WEBVIEW_SHA1="fd08647bd2277514f84ec0f4cabe43cba9d2bccf" \
ENV WEBVIEW_VER="2.3.0" \
WEBVIEW_SHA1="372880f8558541a90bb4753aea25122252817a28" \
WEBVIEW_HOME="/app"

# Create app and data directories
Expand All @@ -19,7 +19,7 @@ RUN mkdir -p ${WEBVIEW_HOME} && \
WORKDIR ${WEBVIEW_HOME}

# Download KafkaWebview Release from Github project
RUN curl -fSL -o /tmp/kafka-webview-ui-bin.zip https://oss.sonatype.org/service/local/repositories/orgsourcelab-1022/content/org/sourcelab/kafka-webview-ui/${WEBVIEW_VER}/kafka-webview-ui-${WEBVIEW_VER}-bin.zip
RUN curl -fSL -o /tmp/kafka-webview-ui-bin.zip https://oss.sonatype.org/service/local/repositories/orgsourcelab-1028/content/org/sourcelab/kafka-webview-ui/${WEBVIEW_VER}/kafka-webview-ui-${WEBVIEW_VER}-bin.zip

# Verify SHA1 hash and extract.
RUN echo "${WEBVIEW_SHA1} /tmp/kafka-webview-ui-bin.zip" | sha1sum -c - && \
Expand Down

0 comments on commit 1f18abb

Please sign in to comment.