woodpecker-helper/Dockerfile
Wolfgang Hottgenroth b6904e4ed2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
add documented decrypt script
2025-01-29 17:24:28 +01:00

17 lines
233 B
Docker

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