user
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Wolfgang Hottgenroth 2025-01-22 13:33:15 +01:00
parent c14f83659a
commit c4d73c8529
Signed by: wn
GPG Key ID: 18FDFA577A8871AD

View File

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