-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e8c638
commit 15d8c99
Showing
2 changed files
with
43 additions
and
2 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,31 @@ | ||
FROM alpine:3.19.0 | ||
|
||
RUN apk add --no-cache \ | ||
ca-certificates \ | ||
py3-kubernetes \ | ||
py3-yaml \ | ||
py3-jsonpatch \ | ||
curl \ | ||
wget \ | ||
openssl | ||
|
||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.4.1/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.4.1 && \ | ||
chmod +x /usr/local/bin/talosctl-1.4.1 | ||
RUN alias t41=/usr/local/bin/talosctl-1.4.1 | ||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.4.8/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.4.8 && \ | ||
chmod +x /usr/local/bin/talosctl-1.4.8 | ||
RUN alias t48=/usr/local/bin/talosctl-1.4.8 | ||
|
||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.5.0/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.5.0 && \ | ||
chmod +x /usr/local/bin/talosctl-1.5.0 | ||
RUN alias t50=/usr/local/bin/talosctl-1.5.0 | ||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.5.6/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.5.6 && \ | ||
chmod +x /usr/local/bin/talosctl-1.5.6 | ||
RUN alias t56=/usr/local/bin/talosctl-1.5.6 | ||
|
||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.6.0/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.6.0 && \ | ||
chmod +x /usr/local/bin/talosctl-1.6.0 | ||
RUN alias t60=/usr/local/bin/talosctl-1.6.0 | ||
RUN wget https://github.com/siderolabs/talos/releases/download/v1.6.6/talosctl-linux-amd64 -O /usr/local/bin/talosctl-1.6.6 && \ | ||
chmod +x /usr/local/bin/talosctl-1.6.6 | ||
RUN alias t66=/usr/local/bin/talosctl-1.6.6 |
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