From 19b7962ff65dda9722d04e3eb85e1c8905ecb1ad Mon Sep 17 00:00:00 2001 From: Alexa Lake Date: Mon, 24 Feb 2025 11:21:59 -0500 Subject: [PATCH] removed duplicate Dockerfile ARG instruction --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 80b6855..49eb79c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,6 @@ COPY src src COPY Cargo.toml . COPY Cargo.lock . ARG TARGETARCH -ARG TARGETARCH RUN if [ "$TARGETARCH" = "amd64" ]; then \ cargo install --target x86_64-unknown-linux-musl --path . ; \ elif [ "$TARGETARCH" = "arm64" ]; then \