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
All checks were successful
Build & Push Forge-Kasm / docker (push) Successful in 31s
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -29,12 +29,14 @@ RUN apt-get update && apt-get install -y jq curl && \
|
|||||||
apt-get autoremove -y
|
apt-get autoremove -y
|
||||||
|
|
||||||
### Add the startup script
|
### Add the startup script
|
||||||
COPY custom_startup /dockerstartup/custom_startup
|
COPY custom_startup $STARTUPDIR/custom_startup.sh
|
||||||
RUN chmod +x /dockerstartup/custom_startup
|
RUN chmod +x $STARTUPDIR/custom_startup.sh
|
||||||
|
RUN chmod 755 $STARTUPDIR/custom_startup.sh
|
||||||
|
|
||||||
### Optional: Single app UI tweaks
|
### Update the desktop environment to be optimized for a single application
|
||||||
RUN cp $HOME/.config/xfce4/xfconf/single-application-xfce-perchannel-xml/* \
|
RUN cp $HOME/.config/xfce4/xfconf/single-application-xfce-perchannel-xml/* $HOME/.config/xfce4/xfconf/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 ###########
|
######### End Customizations ###########
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user