Skip to content

Commit a135ed2

Browse files
jwpjrdevAndy-Python-Programmer
authored andcommitted
env: add Gitpod integration
1 parent 987dbbf commit a135ed2

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitpod.Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM gitpod/workspace-full-vnc
2+
3+
RUN sudo apt-get install -y \
4+
nasm \
5+
cpio \
6+
xorriso \
7+
qemu-system-x86-64
8+
9+
RUN python3 -m install requests xbstrap && pip install --upgrade pip

.gitpod.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
image:
2+
file: .gitpod.Dockerfile
3+
4+
ports:
5+
# vnc
6+
- port: 6080
7+
onOpen: open-preview
8+
9+
tasks:
10+
# prebuilds will fail if the process never ends (i.e. because qemu was launched)
11+
# realistically, the build and run commands should be seperate
12+
- init: ./aero.py --test

0 commit comments

Comments
 (0)