From 770ebcbfc6c5c370eb5c2999b8f66601f9b39322 Mon Sep 17 00:00:00 2001 From: Tracewebstudio Dev Date: Thu, 16 Apr 2026 20:54:24 +0200 Subject: [PATCH] fix(build): remove rustup target in Dockerfile.simple - rust:alpine image already includes x86_64-unknown-linux-musl target - Remove rustup target add command causing 'not found' error --- Dockerfile.simple | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.simple b/Dockerfile.simple index a7562ed..4fbbf74 100644 --- a/Dockerfile.simple +++ b/Dockerfile.simple @@ -7,8 +7,7 @@ FROM registry.nxtgauge.com/rust:alpine AS builder ARG SERVICE_NAME # Install deps -RUN apk add --no-cache musl-dev pkgconfig openssl-dev openssl-libs-static && \ - rustup target add x86_64-unknown-linux-musl +RUN apk add --no-cache musl-dev pkgconfig openssl-dev openssl-libs-static WORKDIR /app