summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..40ba092
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
+FROM ubuntu:latest
+
+RUN apt-get update && apt-get upgrade -y && apt-get install -y curl jq rsync
+
+RUN curl -sL `curl -s https://api.github.com/repos/roswell/roswell/releases/latest \
+ | jq -r '.assets | .[] | select(.name|test("deb$")) | .browser_download_url'` \
+ --output roswell.deb \
+ && apt install -y ./roswell.deb
+
+RUN ros install coleslaw-org/coleslaw && coleslaw --help
+RUN curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash
+RUN evm install emacs-27.1 && evm use emacs-27.1
+
+ENV PATH="/root/.evm/bin:/root/.roswell/bin:$PATH"