mount in fonts from host

This commit is contained in:
thelamer 2024-04-17 18:33:08 -07:00
parent f4941f39e2
commit 3811c29c4e
10 changed files with 13 additions and 13 deletions

View File

@ -11,7 +11,6 @@ RUN \
bash \
curl \
dbus-x11 \
font-noto \
mesa-dri-gallium \
mesa-va-gallium \
netcat-openbsd \

View File

@ -11,7 +11,6 @@ RUN \
bash \
curl \
dbus-x11 \
font-noto \
netcat-openbsd && \
echo "**** setup xdg-open tunnel ****" && \
mkdir -p /usr/share/applications && \

View File

@ -11,7 +11,6 @@ RUN \
bash \
curl \
dbus-x11 \
font-noto \
mesa-dri-gallium \
mesa-va-gallium \
netcat-openbsd \

View File

@ -11,7 +11,6 @@ RUN \
bash \
curl \
dbus-x11 \
font-noto \
netcat-openbsd && \
echo "**** setup xdg-open tunnel ****" && \
mkdir -p /usr/share/applications && \

View File

@ -11,7 +11,6 @@ RUN \
curl \
dbus-x11 \
desktop-file-utils \
fonts-noto \
mesa-va-drivers \
netcat-openbsd \
pulseaudio \

View File

@ -11,7 +11,6 @@ RUN \
curl \
dbus-x11 \
desktop-file-utils \
fonts-noto \
netcat-openbsd && \
echo "**** setup xdg-open tunnel ****" && \
mkdir -p /usr/share/applications && \

View File

@ -11,7 +11,6 @@ RUN \
curl \
dbus-x11 \
desktop-file-utils \
fonts-noto \
mesa-va-drivers \
netcat-openbsd \
pulseaudio \

View File

@ -313,8 +313,12 @@ if [ "${TYPE}" == "run" ]; then
elif [ -d "/var/run/pulse" ]; then
PULSE_BIND="-b /var/run/pulse:/var/run/pulse"
fi
# Fonts
if [ -d "/usr/share/fonts" ] && [ -d "/usr/share/fontconfig" ] && [ -d "/etc/fonts" ]; then
FONTS_BIND="-b /usr/share/fonts:/usr/share/fonts -b /usr/share/fontconfig:/usr/share/fontconfig -b /etc/fonts:/etc/fonts"
fi
$HOME/.local/bin/proot \
${PULSE_BIND} -n \
${PULSE_BIND} ${FONTS_BIND} -n \
-R $HOME/proot-apps/${IMAGE_FOLDER}/ \
/entrypoint "${@:3}" &
start_system_socket "$HOME/proot-apps/${IMAGE_FOLDER}/" $!

7
release-notes/0.1.0 Normal file
View File

@ -0,0 +1,7 @@
What's new in this Version:
* Initial functional logic for PRoot Apps
* Initial documentation for users and developers
* Initial dynamic forkable build logic including package tracking and daily updates
* amd64 and arm64 support
* Base application set

View File

@ -1,7 +1,3 @@
What's new in this Version:
* Initial functional logic for PRoot Apps
* Initial documentation for users and developers
* Initial dynamic forkable build logic including package tracking and daily updates
* amd64 and arm64 support
* Base application set
* Removed fonts from baseimages and mount in from host on run