mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
19941f91f4
* Adds release-ci script to test installation * Fixes CI * Fixes CI * Renames some variables to follow the same SECRETS_ convention
16 lines
345 B
Docker
16 lines
345 B
Docker
FROM centos:8
|
|
|
|
LABEL maintainer="mail@sobolevn.me"
|
|
LABEL vendor="git-secret team"
|
|
|
|
RUN dnf -y update \
|
|
&& dnf install -y \
|
|
# Required for our install script:
|
|
wget \
|
|
sudo \
|
|
&& dnf clean all \
|
|
&& rm -rf /var/cache/yum \
|
|
&& adduser --password='' nonroot \
|
|
&& echo 'nonroot ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
|
|
USER nonroot
|