Skip to content

Commit

Permalink
Merge pull request #554 from openziti/xargs_admin_create_account
Browse files Browse the repository at this point in the history
install xargs for 'zrok admin create account"
  • Loading branch information
qrkourier authored Feb 5, 2024
2 parents 135d608 + 32c6f07 commit 5a1aaa6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/images/zrok/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# this builds docker.io/openziti/zrok
ARG ZITI_CLI_TAG="0.31.2"
ARG ZITI_CLI_TAG="0.32.1"
ARG ZITI_CLI_IMAGE="docker.io/openziti/ziti-cli"
# this builds docker.io/openziti/ziti-controller
FROM ${ZITI_CLI_IMAGE}:${ZITI_CLI_TAG}
Expand All @@ -20,8 +20,9 @@ LABEL name="openziti/zrok" \

USER root

### install packages (jq introduced in source image in next release 0.30.6)
RUN INSTALL_PKGS="jq" && \
### install packages: findutils provides xargs which is used by the zrok Helm chart's controller bootstrapping script to
#create the default account enable token
RUN INSTALL_PKGS="findutils" && \
microdnf -y update --setopt=install_weak_deps=0 --setopt=tsflags=nodocs && \
microdnf -y install --setopt=install_weak_deps=0 --setopt=tsflags=nodocs ${INSTALL_PKGS}

Expand Down

0 comments on commit 5a1aaa6

Please sign in to comment.