mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 11:51:07 +00:00
11 lines
362 B
Docker
11 lines
362 B
Docker
FROM ubuntu:20.04
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
ca-certificates \
|
|
libc6-dev \
|
|
gcc-arm-linux-gnueabihf \
|
|
libc6-dev-armhf-cross \
|
|
qemu-user
|
|
ENV CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc \
|
|
CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_RUNNER="qemu-arm -L /usr/arm-linux-gnueabihf"
|