From c6ccc49c542156bdc571554f830bace6e5b1dc25 Mon Sep 17 00:00:00 2001 From: Benjamin Renard <brenard@zionetrix.net> Date: Thu, 27 Feb 2025 00:11:30 +0100 Subject: [PATCH] Dockerfile: specify entrypoint using array as recommended --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b9660f2..df6813a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,4 @@ FROM node:16-alpine ADD aptly-publish /bin/ RUN chmod +x /bin/aptly-publish RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip py3-debian py3-chardet bash -ENTRYPOINT /bin/aptly-publish +ENTRYPOINT ["/bin/aptly-publish"]