Files
k8s-admin-helper/Dockerfile
Wolfgang Hottgenroth 6155787b59
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
fix Dockerfile
2025-10-27 15:30:44 +01:00

17 lines
243 B
Docker

FROM alpine:3.22.2
ARG USER="user"
RUN apk add --no-cache kubectl gpg gpg-agent bash curl helm && \
addgroup $USER && \
adduser -G $USER -D $USER
COPY decrypt-secrets.sh /usr/local/bin/
USER $USER
WORKDIR /home/$USER
RUN gpg -k