mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
ce97ad42e8
Bumps alpine from 3.15.2 to 3.15.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18 lines
333 B
Docker
18 lines
333 B
Docker
FROM alpine:3.15.3
|
|
|
|
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:
|
|
file \
|
|
make \
|
|
procps
|