mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-13 02:47:07 +00:00
a71c0724db
Signed-off-by: Davide Cavalca <dcavalca@fedoraproject.org>
16 lines
517 B
Docker
16 lines
517 B
Docker
FROM debian:buster-slim
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y build-essential bash curl git locales gcc-aarch64-linux-gnu libc6-dev-arm64-cross device-tree-compiler \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
|
|
|
|
RUN curl -s https://sh.rustup.rs | bash -s -- -y --target aarch64-unknown-none-softfloat
|
|
|
|
ENV LANG en_US.utf8
|
|
ENV PATH "/root/.cargo/bin:${PATH}"
|
|
|
|
WORKDIR /m1n1
|
|
COPY . .
|
|
|
|
CMD ["/bin/bash"]
|