mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
13 lines
234 B
Docker
13 lines
234 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
|