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 13, 2018
1 parent 6002edb commit a668c33
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
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
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM gitpod/workspace-full:latest

USER root
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/*

0 comments on commit a668c33

Please sign in to comment.