Skip to content

Commit 3816387

Browse files
authored
fix: update container dependencies (#44)
1 parent 4301daa commit 3816387

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66

77
env:
88
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9-
PALETTE_VERSION: 4.0.2
10-
PALETTE_CLI_VERSION: 4.4.0
11-
PALETTE_EDGE_VERSION: 4.4.2
9+
PALETTE_VERSION: 4.5.0
10+
PALETTE_CLI_VERSION: 4.5.0
11+
PALETTE_EDGE_VERSION: 4.5.3
1212
PACKER_VERSION: 1.11.0
1313
ORAS_VERSION: 1.0.0
1414
TERRAFORM_VERSION: 1.9.0
15-
PALETTE_REGISTRY_CLI_VERSION: 4.3.0
15+
PALETTE_REGISTRY_CLI_VERSION: 4.5.0
1616
K9S_VERSION: 0.32.5
1717

1818
jobs:

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66

77
env:
88
GITHUB_TOKEN: ${{ github.token }}
9-
PALETTE_VERSION: 4.0.2
10-
PALETTE_CLI_VERSION: 4.4.0
11-
PALETTE_EDGE_VERSION: 4.4.2
9+
PALETTE_VERSION: 4.5.0
10+
PALETTE_CLI_VERSION: 4.5.0
11+
PALETTE_EDGE_VERSION: 4.5.3
1212
PACKER_VERSION: 1.11.0
1313
ORAS_VERSION: 1.0.0
1414
TERRAFORM_VERSION: 1.9.0
15-
PALETTE_REGISTRY_CLI_VERSION: 4.3.0
15+
PALETTE_REGISTRY_CLI_VERSION: 4.5.0
1616
K9S_VERSION: 0.32.5
1717

1818
concurrency:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
ARG PALETTE_VERSION
55

6-
FROM gcr.io/spectro-images-public/release/spectro-registry:${PALETTE_VERSION} AS server
6+
FROM us-docker.pkg.dev/palette-images/palette/spectro-registry:${PALETTE_VERSION} AS server
77

88
FROM alpine:latest
99

docs/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
To download the image, issue the following command. Change the version tag as needed.
44

55
```shell
6-
docker pull ghcr.io/spectrocloud/tutorials:1.0.12
6+
docker pull ghcr.io/spectrocloud/tutorials:1.1.11
77
```
88

99
You can start the container using the following command.
1010

1111
```shell
12-
docker run -p 5000:5000 --rm -it ghcr.io/spectrocloud/tutorials:1.0.12 bash
12+
docker run -p 5000:5000 --rm -it ghcr.io/spectrocloud/tutorials:1.1.11 bash
1313
```
1414

1515
> The Docker file builds a Linux environment. You can use this image on a Mac and Windows. Windows users will require the usage of [WSL2](https://learn.microsoft.com/en-us/windows/wsl/about).
@@ -63,5 +63,5 @@ registry serve /etc/spectro/config.yml > /var/log/registry.log 2>&1 &
6363
If you want to build the docker image locally, you must provide the build arguments for `PALETTE_VERSION`, `PALETTE_CLI_VERSION`, `PALETTE_EDGE_VERSION`, `PACKER_VERSION`, `ORAS_VERSION`, `TERRAFORM_VERSION`, and `K9S_VERSION`. Use the following command to build a local image and replace the versions as needed.
6464

6565
```shell
66-
docker build --build-arg PALETTE_VERSION=4.0.2 --build-arg PALETTE_CLI_VERSION=4.4.0 --build-arg PALETTE_EDGE_VERSION=4.4.2 --build-arg PACKER_VERSION=1.11.0 --build-arg ORAS_VERSION=1.0.0 --build-arg PALETTE_REGISTRY_CLI_VERSION=4.3.0 --build-arg TERRAFORM_VERSION=1.9.0 --build-arg K9S_VERSION=0.32.5 -t tutorials .
66+
docker build --build-arg PALETTE_VERSION=4.5.0 --build-arg PALETTE_CLI_VERSION=4.5.0 --build-arg PALETTE_EDGE_VERSION=4.5.3 --build-arg PACKER_VERSION=1.11.0 --build-arg ORAS_VERSION=1.0.0 --build-arg PALETTE_REGISTRY_CLI_VERSION=4.5.0 --build-arg TERRAFORM_VERSION=1.9.0 --build-arg K9S_VERSION=0.32.5 -t tutorials .
6767
```

0 commit comments

Comments
 (0)