Skip to content

Commit

Permalink
Merge pull request #8 from infovista-opensource/fix-20241104
Browse files Browse the repository at this point in the history
updated packages, add minio client
  • Loading branch information
unixime authored Nov 4, 2024
2 parents 40376b5 + 5cd42d9 commit 4378f6b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
16 changes: 10 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:3.20.3
RUN apk update \
&& apk upgrade \
&& apk add --no-cache \
postgresql16-client=16.3-r0 \
postgresql16-client=16.4-r0 \
yq-go=4.44.1-r2 \
jq=1.7.1-r0 \
curl=8.10.1-r0 \
Expand All @@ -13,12 +13,16 @@ bash=5.2.26-r0 \

RUN wget -O- -q https://github.com/mrako/wait-for/releases/download/v1.0.0/wait-for \
--output-document=/usr/local/bin/wait-for-1.0.0 \
&& wget https://dl.k8s.io/release/v1.31.1/bin/linux/amd64/kubectl \
--output-document=/usr/local/bin/kubectl-v1.31.1 \
&& wget https://dl.k8s.io/release/v1.31.2/bin/linux/amd64/kubectl \
--output-document=/usr/local/bin/kubectl-v1.31.2 \
&& wget https://dl.min.io/client/mc/release/linux-amd64/mc.RELEASE.2024-10-29T15-34-59Z \
--output-document=/usr/local/bin/mc.RELEASE.2024-10-29T15-34-59Z \
&& chmod +x /usr/local/bin/wait-for-1.0.0 \
&& ln -s /usr/local/bin/wait-for-1.0.0 /usr/local/bin/wait-for \
&& chmod +x /usr/local/bin/kubectl-v1.31.1 \
&& ln -s /usr/local/bin/kubectl-v1.31.1 /usr/local/bin/kubectl

&& chmod +x /usr/local/bin/kubectl-v1.31.2 \
&& ln -s /usr/local/bin/kubectl-v1.31.2 /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/mc.RELEASE.2024-10-29T15-34-59Z \
&& ln -s /usr/local/bin/mc.RELEASE.2024-10-29T15-34-59Z /usr/local/bin/mc

USER 1001:1001

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@

| Tool | Version | Origin |
|---|---|---|
| `PostgreSQL 16 Client` | 16.3-r0 | Package Manager |
| `PostgreSQL 16 Client` | 16.4-r0 | Package Manager |
| `jq` | 1.7.1-r0 | Package Manager |
| `yq-go` | 4.44.1-r2 | Package Manager |
| `curl` | 8.10.1-r0 | Package Manager |
| `bash` | 5.2.26-r0 | Package Manager |
| `wait-For` | 1.0.0 | [Repo](https://github.com/mrako/wait-for/releases)
| `kubectl` | 1.31.0 | [Release](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/#install-kubectl-binary-with-curl-on-linux)
| `wait-For` | 1.0.0 | [Repo](https://github.com/mrako/wait-for/releases) |
| `kubectl` | 1.31.2 | [Release](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/#install-kubectl-binary-with-curl-on-linux) |
| `mc` | RELEASE.2024-10-29T15-34-59Z | [Release](https://dl.min.io/client/mc/release/linux-amd64/) |

0 comments on commit 4378f6b

Please sign in to comment.