Skip to content

Commit

Permalink
bump ziti cli version and install jq
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Oct 25, 2023
1 parent ac8eb82 commit 818b4d8
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions docker/images/zrok/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# this builds docker.io/openziti/zrok
FROM docker.io/openziti/ziti-cli:0.27.9
# This build stage grabs artifacts that are copied into the final image.
# It uses the same base as the final image to maximize docker cache hits.
ARG ZITI_CLI_TAG="0.30.5"
ARG ZITI_CLI_IMAGE="docker.io/openziti/ziti-cli"
# this builds docker.io/openziti/ziti-controller
FROM ${ZITI_CLI_IMAGE}:${ZITI_CLI_TAG}

ARG ARTIFACTS_DIR=./dist
ARG DOCKER_BUILD_DIR=.
Expand All @@ -19,6 +20,11 @@ LABEL name="openziti/zrok" \

USER root

### install packages (jq introduced in source image in next release 0.30.6)
RUN INSTALL_PKGS="jq" && \
microdnf -y update --setopt=install_weak_deps=0 --setopt=tsflags=nodocs && \
microdnf -y install --setopt=install_weak_deps=0 --setopt=tsflags=nodocs ${INSTALL_PKGS}

### add licenses to this directory
RUN mkdir -p -m0755 /licenses
COPY ./LICENSE /licenses/apache.txt
Expand Down

0 comments on commit 818b4d8

Please sign in to comment.