Merge branch 'bugfix/KASM-7939-install_unzip_on_chrome_1.18.0' into 'release/1.18.0'

KASM-7939 install unzip on chrome and chromium

See merge request kasm-technologies/internal/workspaces-images!371
This commit is contained in:
Justin Travis 2025-11-17 00:01:13 +00:00
commit a3a91ca65a
2 changed files with 6 additions and 0 deletions

View file

@ -15,6 +15,9 @@ WORKDIR $HOME
COPY ./src/ubuntu/install/chrome $INST_SCRIPTS/chrome/
RUN bash $INST_SCRIPTS/chrome/install_chrome.sh && rm -rf $INST_SCRIPTS/chrome/
# Install unzip
RUN apt-get update && apt-get install -y unzip
# 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

View file

@ -14,6 +14,9 @@ WORKDIR $HOME
COPY ./src/ubuntu/install/chromium $INST_SCRIPTS/chromium/
RUN bash $INST_SCRIPTS/chromium/install_chromium.sh && rm -rf $INST_SCRIPTS/chromium/
# Install unzip
RUN apt-get update && apt-get install -y unzip
# 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