We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58fe1d7 commit a71c072Copy full SHA for a71c072
1 file changed
Dockerfile
@@ -1,10 +1,14 @@
1
FROM debian:buster-slim
2
ENV DEBIAN_FRONTEND=noninteractive
3
4
-RUN apt-get update && apt-get install -y build-essential bash git locales gcc-aarch64-linux-gnu libc6-dev-arm64-cross device-tree-compiler \
+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 \
5
&& rm -rf /var/lib/apt/lists/* \
6
&& localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
7
+
8
+RUN curl -s https://sh.rustup.rs | bash -s -- -y --target aarch64-unknown-none-softfloat
9
10
ENV LANG en_US.utf8
11
+ENV PATH "/root/.cargo/bin:${PATH}"
12
13
WORKDIR /m1n1
14
COPY . .
0 commit comments