File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM gitpod/workspace-full-vnc
2+
3+ RUN sudo apt-get update \
4+ && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
5+ && sudo apt-get install -y ./google-chrome-stable_current_amd64.deb \
6+ && rm google-chrome-stable_current_amd64.deb \
7+ && sudo rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1+ image :
2+ file : .gitpod.Dockerfile
13tasks :
2- - init : yarn install && yarn build && yarn package
4+ - name : Google Chrome
5+ command : >
6+ gp sync-await start &&
7+ gp await-port 6080 &&
8+ for i in `seq 10 -1 1` ; do echo -ne "\rStarting Chrome in $i " && sleep 1 && echo -ne "\r" ; done &&
9+ google-chrome --no-first-run --disable-dev-shm-usage --start-maximized --load-extension=/workspace/browser-extension https://github.com/gitpod-io/template-sveltekit
10+ - name : Webpack Dev Server
11+ init : yarn install && yarn build && yarn package
12+ command : >
13+ gp sync-done start &&
14+ yarn watch
15+ ports :
16+ - name : NoVNC
17+ port : 6080
18+ onOpen : open-preview
19+ - name : Webpack Dev Server
20+ port : 5900
21+ onOpen : ignore
You can’t perform that action at this time.
0 commit comments