From 2ddce321a4e6e26e239ad2e6044a1e3dd82f0205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B3=E9=88=9E?= Date: Thu, 11 Jan 2024 00:21:36 +0800 Subject: [PATCH] refactor: Add comment to Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1eb32e7..e5f3ecf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,9 +9,11 @@ RUN install -d -m 774 -o $UID -g 0 /app WORKDIR /app # Use dumb-init to handle signals -RUN apk add --no-cache dumb-init openssl curl file +RUN apk add --no-cache dumb-init \ + # Our script uses these + openssl curl file -# Copy the bash script into the container +# Copy the shell script into the container COPY --chown=$UID:0 --chmod=774 \ azure-uploader.sh .