File Dockerfile of Package container-heroes-salt-validation
#!BuildTag: heroes-salt-validation:latest
FROM opensuse/tumbleweed:latest
RUN set -e ; \
zypper -n ar https://download.opensuse.org/repositories/openSUSE:/infrastructure/openSUSE_Tumbleweed/ openSUSE:infrastructure ; \
zypper -n in \
ca-certificates-opensuse \
dos2unix \
findutils \
git-core \
moreutils \
perl \
python311-jsonschema python311-j2lint python311-ruff python311-yamllint python311-PyYAML \
salt-lint ShellCheck \
; \
zypper -n cc -a ; rm -r /var/log/* ; \
groupadd -g 2000 validate ; \
useradd -mu 2000 -g 2000 validate
USER validate