From 2385e7812b658ece079c90fdef14df422527f141 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 11 Jan 2023 00:19:05 +0100 Subject: [PATCH] update dockerfile, install nightly --- automation/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/Dockerfile b/automation/Dockerfile index 991ea99..09132c5 100644 --- a/automation/Dockerfile +++ b/automation/Dockerfile @@ -10,6 +10,6 @@ ARG DEBIAN_FRONTEND=noninteractive # set CROSS_CONTAINER_IN_CONTAINER to inform `cross` that it is executed from within a container ENV CROSS_CONTAINER_IN_CONTAINER=true -# TODO: installing cross is problematic, permission issues -RUN rustup target add thumbv7em-none-eabihf armv7-unknown-linux-gnueabihf && \ +RUN rustup install nightly && \ + rustup target add thumbv7em-none-eabihf armv7-unknown-linux-gnueabihf && \ rustup component add rustfmt clippy