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 6b7edf8 commit 517157aCopy full SHA for 517157a
packages/os/umbrelos.Dockerfile
@@ -122,7 +122,9 @@ RUN apt-get install --yes sudo nano vim less man iproute2 iputils-ping curl wget
122
RUN apt-get install --yes python3 fswatch jq rsync git gettext-base gnupg procps dmidecode samba wsdd2 p7zip-full imagemagick ffmpeg
123
124
# Support for alternate filesystems
125
-RUN apt-get install --yes ntfs-3g
+# For some reason this always fails on arm64 but it's ok since we
126
+# don't support external storage on Pi anyway.
127
+RUN [ "${TARGETARCH}" = "amd64" ] && apt-get install --yes ntfs-3g || true
128
129
# TODO: udisks2 recommends eject (2.38.1-5+deb12u3) which is currently missing
130
RUN apt-get install --yes --no-install-recommends udisks2
0 commit comments