Closed kirillt closed 4 years ago
The problem is that Alpine uses target x86_64-alpine-linux-musl
instead of x86_64-unknown-linux-musl
. Installing Rust manually with latter target helps. Here is the working Dockerfile:
FROM alpine:edge
RUN apk add git curl
RUN apk add pkgconfig openssl-dev gcc musl-dev rustup
RUN rustup-init -t x86_64-unknown-linux-musl --default-toolchain nightly --profile minimal -y
RUN git clone https://github.com/sfackler/rust-openssl /build
RUN cd /build && /root/.cargo/bin/cargo build --release
This is probably not a bug, so closing the issue.
Hey, the following Dockerfile:
produces the following error:
Is it correct that this panic comes from
ctest
?