Files
wasmer/.github/cross-linux-aarch64/Dockerfile
Felix Schütt be322f8fba Remove libxcb and libwayland dependencies from config
See https://github.com/wasmerio/wasmer/issues/2822
For some reason these libraries get linked into the final
release binary, which should not be the default (since
these dependencies are only needed for the experimental-io
extension).
2022-06-20 14:29:55 +02:00

11 lines
354 B
Docker

FROM rust:1
#FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:edge
# set CROSS_DOCKER_IN_DOCKER to inform `cross` that it is executed from within a container
ENV CROSS_DOCKER_IN_DOCKER=true
RUN cargo install cross
RUN dpkg --add-architecture arm64 && \
apt-get update && \
apt-get install -qy curl && \
curl -sSL https://get.docker.com/ | sh