mirror of
https://github.com/sobolevn/git-secret
synced 2024-11-08 19:10:31 +00:00
37a28389d2
* Adds new installation instructions for deb and rpm * Fixes CI
17 lines
322 B
Docker
17 lines
322 B
Docker
FROM alpine:3.13
|
|
|
|
LABEL maintainer="mail@sobolevn.me"
|
|
LABEL vendor="git-secret team"
|
|
|
|
# Don't install coreutils on Alpine,
|
|
# so we get busybox versions of ps, stat, and ls. See #475
|
|
RUN apk add --no-cache --update \
|
|
# Direct dependencies:
|
|
bash \
|
|
gawk \
|
|
git \
|
|
gnupg \
|
|
# Assumed to be present:
|
|
make \
|
|
procps
|