4 Commits
0.0.1 ... 0.1.2

Author SHA1 Message Date
cab241a96e gpg-agent
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2025-01-22 15:39:51 +01:00
c60fcfd26b add bash
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2025-01-22 14:01:17 +01:00
088e773e63 fix
Some checks failed
ci/woodpecker/tag/woodpecker Pipeline failed
2025-01-22 13:35:50 +01:00
c4d73c8529 user 2025-01-22 13:33:15 +01:00

View File

@@ -1,4 +1,12 @@
FROM alpine:latest FROM alpine:latest
RUN apk add --no-cache kubectl gpg ARG USER="user"
RUN apk add --no-cache kubectl gpg gpg-agent bash && \
addgroup $USER && \
adduser -G $USER -D $USER
USER $USER
WORKDIR /home/$USER