mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
21 lines
343 B
Docker
21 lines
343 B
Docker
FROM almalinux:8
|
|
|
|
LABEL maintainer="mail@sobolevn.me"
|
|
LABEL vendor="git-secret team"
|
|
|
|
RUN dnf -y update \
|
|
&& dnf install -y \
|
|
# Direct dependencies:
|
|
bash \
|
|
gawk \
|
|
git \
|
|
gnupg \
|
|
# Assumed to be present:
|
|
diffutils \
|
|
file \
|
|
findutils \
|
|
procps \
|
|
make \
|
|
&& dnf clean all \
|
|
&& rm -rf /var/cache/yum
|