File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ FROM gitpod/workspace-full
2
+
3
+ RUN sudo apt-get update \
4
+ && sudo apt-get install -y \
5
+ g++ gcc make python2.7 pkg-config libx11-dev libxkbfile-dev libsecret-1-dev python-is-python3 rsync \
6
+ && sudo rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change
1
+ image :
2
+ file : .gitpod.Dockerfile
3
+ tasks :
4
+ - init : yarn global add js-yaml && yarn && yarn build
5
+ command : yarn watch
6
+ - command : yarn serve
7
+ ports :
8
+ - port : 5000
9
+ onOpen : open-preview
10
+ github :
11
+ prebuilds :
12
+ # enable for the master/default branch (defaults to true)
13
+ master : true
14
+ # enable for all branches in this repo (defaults to false)
15
+ branches : true
16
+ # enable for pull requests coming from this repo (defaults to true)
17
+ pullRequests : true
18
+ # enable for pull requests coming from forks (defaults to false)
19
+ pullRequestsFromForks : true
20
+ # add a check to pull requests (defaults to true)
21
+ addCheck : true
22
+ # add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
23
+ addComment : true
24
+ # add a "Review in Gitpod" button to the pull request's description (defaults to false)
25
+ addBadge : false
26
+ # add a label once the prebuild is ready to pull requests (defaults to false)
27
+ addLabel : false
You can’t perform that action at this time.
0 commit comments