mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
20 lines
330 B
Docker
20 lines
330 B
Docker
|
FROM fedora:34
|
||
|
|
||
|
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 \
|
||
|
findutils \
|
||
|
procps \
|
||
|
make \
|
||
|
&& dnf clean all \
|
||
|
&& rm -rf /var/cache/yum
|