Merge pull request #692 from openziti/docker-bump-ziti-cli

update ziti CLI version in zrok CLI
This commit is contained in:
Kenneth Bingham 2024-07-08 11:26:45 -04:00 committed by GitHub
commit 187c06aac2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 22 additions and 6 deletions

15
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,15 @@
version: 2
updates:
# bump the ziti CLI version that is built into the zrok CLI image
- package-ecosystem: docker
directory: "/docker/images/zrok"
schedule:
interval: weekly
open-pull-requests-limit: 20
groups:
all:
applies-to: version-updates
update-types:
- "major"
- "minor"
- "patch"

View File

@ -2,9 +2,11 @@
## v0.4.35
FEATURE: Closed permission mode for Docker and Linux private shares
CHANGE: add example in ./etc/caddy to set X-Real-IP header to public share client IP
FEATURE: Closed permission mode for Docker and Linux private shares
CHANGE: auto-update the ziti CLI version that is built in to the openziti/zrok container image
CHANGE: Docker examples set HOME to enable running CLI commands in the container

View File

@ -1,8 +1,5 @@
# this builds docker.io/openziti/zrok
ARG ZITI_CLI_TAG="1.0.0"
ARG ZITI_CLI_IMAGE="docker.io/openziti/ziti-cli"
FROM ${ZITI_CLI_IMAGE}:${ZITI_CLI_TAG}
FROM docker.io/openziti/ziti-cli:1.1.4
ARG ARTIFACTS_DIR=./dist
ARG DOCKER_BUILD_DIR=.
@ -16,7 +13,9 @@ LABEL name="openziti/zrok" \
maintainer="support@zrok.io" \
vendor="NetFoundry" \
summary="Run the zrok CLI" \
description="Run the zrok CLI"
description="Run the zrok CLI" \
org.opencontainers.image.description="Run the zrok CLI" \
org.opencontainers.image.source="https://github.com/openziti/zrok"
USER root