Skip to content

Commit fa78939

Browse files
committed
Dockerfileのベースイメージをalpine:3.20からalpine:3.22.2に更新し、k0sバイナリ取得のURLを修正
1 parent b106aaa commit fa78939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

k8s-worker/alpine-k0s/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
ARG K0S_VERSION=v1.34.1+k0s.0
33
ARG ARCH=amd64
44

5-
FROM alpine:3.20
5+
FROM alpine:3.22.2
66
ARG K0S_VERSION
77

88
# 便利ツール(ヘルスチェックやデバッグ用)
99
RUN apk add --no-cache bash iproute2 iptables ethtool curl ca-certificates tini util-linux coreutils
1010

1111
# k0s バイナリを取得
1212
RUN curl -fsSL -o /usr/local/bin/k0s \
13-
"https://github.com/k0sproject/k0s/releases/download/${K0S_VERSION}/k0s-linux-${ARCH}" \
13+
"https://github.com/k0sproject/k0s/releases/download/${K0S_VERSION}/k0s-${K0S_VERSION}-${ARCH}" \
1414
&& chmod +x /usr/local/bin/k0s
1515

1616
# エントリポイント

0 commit comments

Comments
 (0)