git-secret/.ci/docker-ci/debian-gnupg1/Dockerfile

22 lines
513 B
Docker
Raw Normal View History

FROM debian:11.1-slim
2021-05-03 10:56:51 +00:00
2021-05-03 11:43:02 +00:00
LABEL maintainer="mail@sobolevn.me"
LABEL vendor="git-secret team"
2021-05-03 14:23:54 +00:00
ENV DEBIAN_FRONTEND='noninteractive'
ENV SECRETS_GPG_COMMAND='gpg1'
2021-05-03 10:56:51 +00:00
RUN apt-get update \
2021-05-03 16:21:33 +00:00
&& apt-get install --no-install-recommends -y \
2021-05-03 10:56:51 +00:00
# Direct dependencies:
gawk \
git \
2021-05-03 14:23:54 +00:00
gnupg1 \
2021-05-03 10:56:51 +00:00
# Assumed to be present:
file \
2021-05-03 10:56:51 +00:00
procps \
make \
# Cleaning cache:
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*