mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-03 20:07:21 +00:00
19 lines
420 B
Docker
19 lines
420 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
ca-certificates \
|
|
unzip \
|
|
openjdk-8-jre \
|
|
python \
|
|
gcc \
|
|
libc6-dev
|
|
|
|
COPY android-ndk.sh /
|
|
RUN /android-ndk.sh x86
|
|
ENV PATH=$PATH:/android-toolchain/bin
|
|
|
|
# TODO: run tests in an emulator eventually
|
|
ENV CARGO_TARGET_I686_LINUX_ANDROID_LINKER=i686-linux-android-gcc \
|
|
CARGO_TARGET_I686_LINUX_ANDROID_RUNNER=echo
|