Files
k8s-admin-helper/Dockerfile
Wolfgang Hottgenroth c7249ba743
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
add podman
2025-11-21 18:46:28 +01:00

17 lines
250 B
Docker

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