Skip to content

Commit

Permalink
update docker file for 2.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Crim committed Jan 19, 2019
1 parent f1992d5 commit e510529
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 <stephen.powis@gmail.com>

## Define what version of Kafka Webview to build the image using.
ENV WEBVIEW_VER="2.1.2" \
WEBVIEW_SHA1="9b321f3955c884282d18f0a1c6821fcb84b70afb" \
ENV WEBVIEW_VER="2.1.3" \
WEBVIEW_SHA1="14f7fb35c8632e4c155ad38eee67ff68c76ce6d9" \
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-1015/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-1016/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 e510529

Please sign in to comment.