From 0d0cc98dfe56ee7c29081c2a0e8d95041d09dba8 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 21 Sep 2023 19:13:49 +0200 Subject: [PATCH] is it the ssh client --- automation/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/Dockerfile b/automation/Dockerfile index fc52cc5..013425f 100644 --- a/automation/Dockerfile +++ b/automation/Dockerfile @@ -5,7 +5,7 @@ FROM rust:latest RUN apt-get update && apt-get --yes upgrade # tzdata is a dependency, won't install otherwise ARG DEBIAN_FRONTEND=noninteractive -# RUN apt-get --yes install rsync openssh-client +RUN apt-get --yes install rsync # set CROSS_CONTAINER_IN_CONTAINER to inform `cross` that it is executed from within a container ENV CROSS_CONTAINER_IN_CONTAINER=true @@ -13,7 +13,7 @@ ENV CROSS_CONTAINER_IN_CONTAINER=true RUN rustup install nightly && \ rustup target add thumbv7em-none-eabihf armv7-unknown-linux-gnueabihf && \ rustup component add rustfmt clippy -# RUN cargo install mdbook --no-default-features --features search --vers "^0.4" --locked +RUN cargo install mdbook --no-default-features --features search --vers "^0.4" --locked # SSH stuff to allow deployment to doc server RUN adduser --uid 114 jenkins