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
This commit is contained in:
Tracewebstudio Dev 2026-04-16 20:54:24 +02:00
parent 09df0323f3
commit 770ebcbfc6

View file

@ -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