-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitpod.yml
35 lines (34 loc) · 937 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# image: gitpod/workspace-full
image:
file: .gitpod.Dockerfile
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: false
addComment: false
addBadge: true
vscode:
extensions:
- "ms-azuretools.vscode-docker"
- "ms-python.python"
- "eamodio.gitlens"
tasks:
- init: |
docker pull ros:dashing
docker build -t smile_ros -f ros.Dockerfile .
docker build -t rosboard -f rosboard.Dockerfile .
docker pull amir20/dozzle:latest
command: docker run --name dozzle -d --volume=/var/run/docker.sock:/var/run/docker.sock -p 8888:8080 amir20/dozzle:latest
- init: |
git submodule update --init --recursive
pip install --upgrade pip
pip install -e ./rosboard
pip install -e ./edGNN
pip install -e ./edGNN/heft
pip install -e ./wfcommons
ports:
- port: 8888
visibility: private