Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Added mono
Browse files Browse the repository at this point in the history
  • Loading branch information
svenefftinge committed Sep 20, 2018
1 parent 6002edb commit 876a1b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitpod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
image:
file: Dockerfile
ports:
- port: 3000
protocol: "http"
Expand Down
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gitpod/workspace-full:latest

USER root
# comment
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
&& echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list \
&& apt update \
&& apt-get update \
&& apt-get install -y mono-devel \
&& apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# C# Extension For Theia
[![Gitpod - Code Now](https://img.shields.io/badge/Gitpod-Code%20Now-blue.svg?longCache=true)](https://gitpod.io#https://github.com/theia-ide/theia-csharp-extension)

Adds C# language support to the Theia IDE.
Adds C# language support to the Theia IDE. Powered by omnisharp.

## Getting started

Expand Down

0 comments on commit 876a1b2

Please sign in to comment.