From b1e30221ce92da9a05aedc2f62c8a7d1b24c28d9 Mon Sep 17 00:00:00 2001 From: James Downie Date: Tue, 2 Jul 2024 19:13:30 +1000 Subject: [PATCH] Removed a superfluous apt install statement. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d23653e7..e2be11805 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,6 @@ RUN npm install --production \ # Create actual CryptPad image FROM node:lts-slim ENV DEBIAN_FRONTEND=noninteractive -RUN apt update && apt install -y git rdfind && rm -rf /var/lib/apt/lists/* # Create user and group for CryptPad so it does not run as root RUN groupadd cryptpad -g 4001