We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
they should look similar to gitpod config file in Theia repo
The text was updated successfully, but these errors were encountered:
.gitpod.yml template:
image: file: .gitpod.dockerfile tasks: - init: yarn command: | gp sync-done init yarn --cwd {{extensionName}} watch - command: | gp sync-await init yarn --cwd browser-app watch name: Watch browser-app openMode: split-right - command: | gp sync-await init yarn --cwd browser-app start .. name: Run browser-app openMode: tab-after ports: - port: 3000 # expose Theia port - port: 6080 # ignore VNC port onOpen: ignore - port: 5900 # ignore VNC port onOpen: ignore github: prebuilds: branches: true
.gitpod.dockerfile (take up to date from Theia repo)
FROM gitpod/workspace-full-vnc:latest USER root # Install custom tools, runtime, etc. RUN apt-get update \ # window manager && apt-get install -y jwm \ # electron && apt-get install -y libgtk-3-0 libnss3 libasound2 \ # native-keymap && apt-get install -y libx11-dev libxkbfile-dev \ && apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/* USER gitpod # Apply user-specific settings RUN bash -c ". .nvm/nvm.sh \ && nvm install 10 \ && nvm use 10 \ && npm install -g yarn" # Give back control USER root
Sorry, something went wrong.
take up to date from Theia repo
It would be nice to publish it to docker from Theia repo.
No branches or pull requests
they should look similar to gitpod config file in Theia repo
The text was updated successfully, but these errors were encountered: