mirror of
https://github.com/sern-handler/gui
synced 2026-06-06 01:16:54 +00:00
feat: gitpod integration
This commit is contained in:
11
.gitpod.yml
Normal file
11
.gitpod.yml
Normal 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
6
Dockerfile.gitpod
Normal 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/*
|
||||
Reference in New Issue
Block a user