Merge branch 'bugfix/KASM-2490-install-chrome-postman' into 'develop'

install chrome in postman

Closes KASM-2490

See merge request kasm-technologies/internal/workspaces-images!42
This commit is contained in:
Justin Travis 2022-04-11 18:05:52 +00:00
commit 3820fa7853

View File

@ -10,10 +10,14 @@ WORKDIR $HOME
######### Customize Container Here ###########
# Install Postman
COPY ./src/ubuntu/install/postman $INST_SCRIPTS/postman/
RUN bash $INST_SCRIPTS/postman/install_postman.sh && rm -rf $INST_SCRIPTS/postman/
# Install Google Chrome
COPY ./src/ubuntu/install/chrome $INST_SCRIPTS/chrome/
RUN bash $INST_SCRIPTS/chrome/install_chrome.sh && rm -rf $INST_SCRIPTS/chrome/
COPY ./src/ubuntu/install/postman/custom_startup.sh $STARTUPDIR/custom_startup.sh
RUN chmod +x $STARTUPDIR/custom_startup.sh
RUN chmod 755 $STARTUPDIR/custom_startup.sh