Dockerfile: leave gpg-agent installed

This commit is contained in:
Dawid Dziurla 2022-04-25 07:56:36 +02:00 committed by GitHub
parent e75218c0e9
commit 6797cd3dcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3008
RUN apt-get update \
&& apt-get install -y --no-install-recommends software-properties-common gnupg-agent \
&& apt-get install -y --no-install-recommends software-properties-common gpg-agent \
&& add-apt-repository -y ppa:git-core/ppa \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
@ -27,7 +27,7 @@ RUN apt-get update \
sudo \
uuid-runtime \
tzdata \
&& apt remove --purge -y software-properties-common gnupg-agent \
&& apt remove --purge -y software-properties-common \
&& apt autoremove --purge -y \
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -f UTF-8 en_US.UTF-8 \