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:
parent
09df0323f3
commit
770ebcbfc6
1 changed files with 1 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue