From f45330a006a019b6892094a9cb734dd497add7c0 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 24 Jul 2025 11:55:29 +0200 Subject: Added stuff to Dockerfile, switched to Debian for Emscripten compatibility --- container-run.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'container-run.sh') diff --git a/container-run.sh b/container-run.sh index 9799f65..6865e32 100755 --- a/container-run.sh +++ b/container-run.sh @@ -7,7 +7,7 @@ # ./container-run.sh arm ./build test # # builds nissy and runs the unit tests in an ARM container. -# The container images are based on Alpine Linux, see Dockerfile for details. +# The container images are based on Debian Linux, see Dockerfile for details. # The images are built with a tag starting with 'localhost/nissy/'. # See below for a list of options. @@ -46,12 +46,12 @@ arm|arm64) esac platform="--platform=linux/$p" -image="localhost/nissy/alpine-$p" +image="localhost/nissy/debian-$p" docker build "$platform" -t "$image" . if [ -z "$2" ]; then - docker run "$platform" -it "$image" /bin/sh + docker run --rm "$platform" -it "$image" /bin/sh else - docker run "$platform" -t "$image" $@ + docker run --rm "$platform" -t "$image" $@ fi -- cgit v1.3