From 5abad632c69db4b66cc54ec4b5be7c382add90f0 Mon Sep 17 00:00:00 2001 From: Catalin Constantin Mititiuc Date: Tue, 25 Nov 2025 15:38:35 -0800 Subject: [PATCH] Remove unnecessary apt package installs from Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e03d4d5..bce9aee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ARG RESTY_DEB_VERSION="=1.27.1.2-1~bookworm1" ARG RESTY_LUAROCKS_VERSION="3.12.2" RUN apt-get update && apt-get install -y \ - python3-pygments lua-inotify wget curl tar make && \ + python3-pygments lua-inotify wget && \ wget -q -O $pkgname $pkgurl && dpkg -i $pkgname && rm $pkgname RUN wget -qO - https://openresty.org/package/pubkey.gpg | gpg --dearmor > /etc/apt/trusted.gpg.d/openresty-keyring.gpg \