Files
ci-helper/Dockerfile
Wolfgang Hottgenroth 77d5158659
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
add helm
2025-02-03 12:45:40 +01:00

16 lines
351 B
Docker

FROM alpine:latest
ARG USER="user"
RUN \
echo "@testing https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
apk add --no-cache kubectl gpg gpg-agent bash trivy@testing curl helm && \
addgroup $USER && \
adduser -G $USER -D $USER
COPY decrypt-secrets.sh /usr/local/bin/
USER $USER
WORKDIR /home/$USER