diff --git a/Dockerfile b/Dockerfile index 71941ac72b..855ee3d2ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \