From dfe37c9efd1cc2c6d4c55a6b845de55920c0f9c3 Mon Sep 17 00:00:00 2001 From: hackercat Date: Tue, 12 Jan 2021 18:07:39 +0000 Subject: [PATCH] Clear apt lists --- linux/ubuntu/nodejs/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/linux/ubuntu/nodejs/Dockerfile b/linux/ubuntu/nodejs/Dockerfile index 0f71619..491b039 100644 --- a/linux/ubuntu/nodejs/Dockerfile +++ b/linux/ubuntu/nodejs/Dockerfile @@ -21,6 +21,7 @@ RUN apt -yq update && \ apt -yq upgrade && \ apt -yq install nodejs && \ apt-get clean && \ + rm -rf /var/lib/apt/lists/* && \ rm -rf /tmp/* && \ groupadd -g 1000 ${RUNNER_USER} && \ useradd -u 1000 -g ${RUNNER_USER} -G sudo -m -s /bin/bash ${RUNNER_USER} && \