From 08e2f6eec17d22cbb0c726145bb9b6cd05fa93ce Mon Sep 17 00:00:00 2001 From: Joshua Saxby Date: Tue, 29 Nov 2022 20:30:29 +0000 Subject: [PATCH] Extending dockcross: run apt non-interactively You need the `-y` (aka `--assume-yes`) flag when running apt in a script otherwise the thing hangs forever waiting for interactive confirmation for some larger downloads. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 994484d..9571307 100644 --- a/README.md +++ b/README.md @@ -544,7 +544,7 @@ An example Dockerfile would be: FROM dockcross/linux-armv7 ENV DEFAULT_DOCKCROSS_IMAGE my_cool_image -RUN apt-get install nano +RUN apt-get install -y nano ``` And then in the shell: