From fcd5db71123904a9bd8ccf50d5633321c1b594d0 Mon Sep 17 00:00:00 2001 From: "ryan.kuba" Date: Mon, 11 Apr 2022 07:02:53 -0700 Subject: [PATCH] install chrome in postman --- dockerfile-kasm-postman | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dockerfile-kasm-postman b/dockerfile-kasm-postman index 04acf27..0ba9a28 100644 --- a/dockerfile-kasm-postman +++ b/dockerfile-kasm-postman @@ -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