Files
k8s-admin-helper/Dockerfile
Wolfgang Hottgenroth 088e773e63
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
fix
2025-01-22 13:35:50 +01:00

13 lines
165 B
Docker

FROM alpine:latest
ARG USER="user"
RUN apk add --no-cache kubectl gpg && \
addgroup $USER && \
adduser -G $USER -D $USER
USER $USER
WORKDIR /home/$USER