Add user and drop privileges
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Henrik HerHde Huettemann 2023-09-21 18:40:48 +02:00
parent d350cf0c78
commit b9ad296b03
Signed by: HueHe
GPG key ID: 9F7BD10E0A8A111E

View file

@ -4,13 +4,14 @@ COPY --from=koalaman/shellcheck:v0.9.0 /bin/shellcheck /bin/
RUN apk add --update --no-cache \
build-base \
gcc \
ruby-full \
ruby \
git \
openssh-keygen \
&& \
gem install mdl --no-document && \
pip install pre-commit && \
pip install --no-cache-dir pre-commit && \
gem install --no-document mdl && \
mkdir /data && \
git config --global --add safe.directory /data
adduser -D -g user user
USER user:user
WORKDIR /data