2a8cca03d8
`apt update` and `apt install` should be in the same Docker RUN statement, otherwise `apt update` will be cached and `apt install` will 404 if a package no longer exists.
12 lines
354 B
Docker
12 lines
354 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev ca-certificates \
|
|
gcc-mipsel-linux-gnu libc6-dev-mipsel-cross \
|
|
binfmt-support qemu-user-static
|
|
|
|
ENV CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_LINKER=mipsel-linux-gnu-gcc \
|
|
QEMU_LD_PREFIX=/usr/mipsel-linux-gnu \
|
|
RUST_TEST_THREADS=1
|