You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
244 B
7 lines
244 B
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update -y && apt-get install -y gcc gcc-s390x-linux-gnu ca-certificates
|
|
|
|
ENV PATH=$PATH:/rust/bin
|
|
ENV CARGO_BUILD_TARGET=s390x-unknown-linux-gnu
|
|
ENV CARGO_TARGET_S390X_UNKNOWN_LINUX_GNU_LINKER=s390x-linux-gnu-gcc
|
|
|