From 05d80ed019b7053c94be259ac69273263cc9eecf Mon Sep 17 00:00:00 2001 From: Nikita Churikov Date: Mon, 11 Mar 2024 17:30:39 +0100 Subject: [PATCH] added suggested '--no-install-recommends' --- serve-encrypt/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serve-encrypt/Dockerfile b/serve-encrypt/Dockerfile index ec51d03..a3a6429 100644 --- a/serve-encrypt/Dockerfile +++ b/serve-encrypt/Dockerfile @@ -2,7 +2,7 @@ FROM debian:stable-slim # Install PostgreSQL client and GPG -RUN apt-get update && apt-get install -y gnupg2 curl postgresql-client && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install --no-install-recommends -y gnupg2 curl postgresql-client && apt-get clean && rm -rf /var/lib/apt/lists/* # Create a non-root user and group (using user ID 1000 and group ID 1000 for compatibility) # Fixed commands for Debian