Compare commits

..

No commits in common. "f0821d2cfe34708b664d131fcdd03671aae79ae4" and "f459b11e8bd373416eb666ec58d624bf7e673399" have entirely different histories.

2 changed files with 1 additions and 14 deletions

View File

@ -15,7 +15,7 @@ spec:
restartPolicy: OnFailure
containers:
- name: setup
image: registry.bouvais.lu/minio-runner:1.0.0
image: minio/mc:latest
command: ["/bin/sh", "-c"]
args:
- |

View File

@ -1,13 +0,0 @@
FROM alpine:3.20
RUN apk add --no-cache curl bash \
&& curl -fsSL -o /usr/local/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc \
&& chmod +x /usr/local/bin/mc \
&& curl -fsSL -o /usr/local/bin/kubectl "https://dl.k8s.io/release/$(curl -fsSL https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& chmod +x /usr/local/bin/kubectl \
&& adduser -D -u 1000 runner
USER runner
WORKDIR /home/runner
ENTRYPOINT ["/bin/bash"]