We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca3651 commit a5c3190Copy full SHA for a5c3190
images/base/ubuntu.Dockerfile
@@ -39,6 +39,9 @@ RUN apt-get update && \
39
wget \
40
rsync
41
42
+# Compat: on non-armv7 architectures, install `software-properties-common`
43
+RUN [[ "$(dpkg --print-architecture)" != "armhf" ]] && apt-get install --yes software-properties-common || echo "WARN: Skipping software-properties-common installation on armhf"
44
+
45
# Install latest Git using their official PPA
46
# Note: due to a dependency issue with the armv7 `software-properties-common` package,
47
# we can't use `add-apt-repository` here. Instead, we'll add the Git PPA
0 commit comments