Refactor Dockerfile to correct startup script path and permissions for improved Forge integration
All checks were successful
Build & Push Forge-Kasm / docker (push) Successful in 31s

This commit is contained in:
2025-06-06 07:20:17 -05:00
parent c8750a9e84
commit 0688478bdd

View File

@@ -29,12 +29,14 @@ RUN apt-get update && apt-get install -y jq curl && \
apt-get autoremove -y
### Add the startup script
COPY custom_startup /dockerstartup/custom_startup
RUN chmod +x /dockerstartup/custom_startup
COPY custom_startup $STARTUPDIR/custom_startup.sh
RUN chmod +x $STARTUPDIR/custom_startup.sh
RUN chmod 755 $STARTUPDIR/custom_startup.sh
### Optional: Single app UI tweaks
RUN cp $HOME/.config/xfce4/xfconf/single-application-xfce-perchannel-xml/* \
$HOME/.config/xfce4/xfconf/xfce-perchannel-xml/
### Update the desktop environment to be optimized for a single application
RUN cp $HOME/.config/xfce4/xfconf/single-application-xfce-perchannel-xml/* $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/
RUN cp /usr/share/backgrounds/bg_kasm.png /usr/share/backgrounds/bg_default.png
RUN apt-get remove -y xfce4-panel
######### End Customizations ###########