-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
bloop: added completions
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
FROM alpine | ||
FROM ubuntu | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y bash curl elvish git scala | ||
|
||
RUN apk add --no-cache curl gcompat | ||
RUN apk add --no-cache \ | ||
--repository=https://dl-cdn.alpinelinux.org/alpine/edge/community \ | ||
elvish | ||
RUN curl -fL "https://github.com/coursier/launchers/raw/master/cs-x86_64-pc-linux.gz" \ | ||
| gzip -d > /usr/bin/cs \ | ||
&& chmod +x /usr/bin/cs | ||
|
||
RUN cs setup -y | ||
RUN cs install bloop --only-prebuilt=true | ||
|
||
ENV PATH="$PATH:/root/.local/share/coursier/bin" | ||
RUN bloop | ||
ENTRYPOINT [ "bash" ] |