From 1f6af1d4018e431525ad49c8b60efd7eb1b5ecb1 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Mon, 8 Jun 2026 19:02:26 -0400 Subject: [PATCH] fix: add hadolint ignore DL3018 for apk add --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 09a1507..f23f47a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,10 @@ FROM alpine:3.23 ARG VERSION=3.1.0 ARG TARGETARCH=x64 +# hadolint ignore=DL3018 RUN apk add --no-cache curl && \ if [ "$TARGETARCH" == "amd64" ]; then export TARGETARCH="x64"; fi; wget --no-verbose -O /usr/local/bin/duplicacy "https://github.com/gilbertchen/duplicacy/releases/download/v${VERSION}/duplicacy_linux_${TARGETARCH}_${VERSION}" && \ chmod 777 /usr/local/bin/duplicacy && \ mkdir -p /config/scripts && \ mkdir -p /config/cache && \ - mkdir -p /data + mkdir -p /data \ No newline at end of file