We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d841f24 commit b157918Copy full SHA for b157918
Tools/setup/Dockerfile
@@ -8,7 +8,6 @@ ENV LC_ALL=C.UTF-8
8
ENV DISPLAY=:99
9
ENV TERM=xterm
10
ENV TZ=UTC
11
-ENV QEMU_CPU=max,pauth-impdef=on
12
ENV RUNS_IN_DOCKER=true
13
14
# SITL UDP PORTS
Tools/setup/ubuntu.sh
@@ -31,7 +31,7 @@ echo "[ubuntu.sh] Starting..."
31
echo "[ubuntu.sh] arch: $INSTALL_ARCH"
32
33
# detect if running in docker
34
-if [ -z "$RUNS_IN_DOCKER" ]; then
+if [ "$RUNS_IN_DOCKER" = "true" ]; then
35
echo "[ubuntu.sh] Running within docker, installing initial dependencies";
36
apt-get --quiet -y update && DEBIAN_FRONTEND=noninteractive apt-get --quiet -y install \
37
ca-certificates \
0 commit comments