Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bloop: added completions
Browse files Browse the repository at this point in the history
rsteube committed Nov 25, 2024
1 parent 2630091 commit 791301e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions completers/bloop_completer/Dockerfile
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" ]

0 comments on commit 791301e

Please sign in to comment.