Skip to content

Commit c7b7a6d

Browse files
committed
Add bin-intellij-scala-runners
1 parent 6013722 commit c7b7a6d

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

bin-intellij-scala-runners/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM shopstic/curl-tar-unzip:1.0.1 as runners
2+
3+
# Apache 2.0 license: https://plugins.jetbrains.com/plugin/1347-scala
4+
5+
RUN \
6+
mkdir /download && \
7+
cd /download && \
8+
curl -Lo plugin.zip "https://plugins.jetbrains.com/plugin/download?rel=true&updateId=118422" && \
9+
unzip plugin.zip && \
10+
mkdir /var/lib/intellij-scala-runners/ && \
11+
mv ./Scala/lib/runners.jar /var/lib/intellij-scala-runners/ && \
12+
rm -Rf /download
13+
14+
FROM scratch
15+
COPY --from=runners /var/lib/intellij-scala-runners /var/lib/intellij-scala-runners

bin-intellij-scala-runners/version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2021.1.18

0 commit comments

Comments
 (0)