feat: gitpod integration

This commit is contained in:
2023-07-15 16:05:17 +02:00
committed by GitHub
parent 374880a733
commit 2fb421b745
2 changed files with 17 additions and 0 deletions

11
.gitpod.yml Normal file
View File

@@ -0,0 +1,11 @@
image:
file: Dockerfile.gitpod
ports:
- port: 6080
onOpen: open-preview
tasks:
- init: yarn install
command: yarn start
- init: yarn install
command: yarn electron
openMode: split-right

6
Dockerfile.gitpod Normal file
View File

@@ -0,0 +1,6 @@
FROM gitpod/workspace-full-vnc
# Install dependencies
RUN apt-get update \
&& apt-get install -y libgtk-3-dev \
&& apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/*