Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit ca63844

Browse files
committed
Install breeze package to get missing icons
Without the `breeze` package some apps may have missing icons, making it hard (or impossible) to determine what a button does. Installing `breeze` would normally pull in a whole lot of packages that are unnecessary, hence the use of `--assume-installed` to avoid this. Fixes linuxserver/docker-digikam/issues/24.
1 parent 0770281 commit ca63844

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN \
1313
libvorbis \
1414
pango \
1515
wget && \
16+
pacman -Sy --noconfirm --assume-installed=kwayland,frameworkintegration,kirigami2 \
17+
breeze && \
1618
echo "**** prep abc user ****" && \
1719
usermod -s /bin/bash abc && \
1820
echo '%abc ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/abc && \

Dockerfile.aarch64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN \
1313
libvorbis \
1414
pango \
1515
wget && \
16+
pacman -Sy --noconfirm --assume-installed=kwayland,frameworkintegration,kirigami2 \
17+
breeze && \
1618
echo "**** prep abc user ****" && \
1719
usermod -s /bin/bash abc && \
1820
echo '%abc ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/abc && \

Dockerfile.armhf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ RUN \
1313
libvorbis \
1414
pango \
1515
wget && \
16+
pacman -Sy --noconfirm --assume-installed=kwayland,frameworkintegration,kirigami2 \
17+
breeze && \
1618
echo "**** prep abc user ****" && \
1719
usermod -s /bin/bash abc && \
1820
echo '%abc ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/abc && \

0 commit comments

Comments
 (0)