-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #692 from openziti/docker-bump-ziti-cli
update ziti CLI version in zrok CLI
- Loading branch information
Showing
3 changed files
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]" \ | ||
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 | ||
|
||
|