File tree Expand file tree Collapse file tree 3 files changed +17
-20
lines changed Expand file tree Collapse file tree 3 files changed +17
-20
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 54
54
cargo clean
55
55
rm -rf bin/languageclient
56
56
57
- build-docker-image : Dockerfile
58
- docker build --tag autozimu/languageclientneovim .
57
+ build-docker-image : ci/ Dockerfile
58
+ docker build --tag autozimu/languageclientneovim ci
59
59
60
60
publish-docker-image :
61
61
docker push autozimu/languageclientneovim
Original file line number Diff line number Diff line change
1
+ FROM rust:1.26
2
+
3
+ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
4
+ && apt-get install --yes nodejs \
5
+ && npm install -g
[email protected]
6
+
7
+ RUN apt-get install --yes neovim python3-pip python3-pytest mypy flake8 \
8
+ && pip3 install neovim vim-vint
9
+
10
+ RUN rustup component add rls-preview rust-analysis rust-src \
11
+ && rls --version
12
+
13
+ ENV CARGO_TARGET_DIR=/tmp
14
+
15
+ CMD /bin/bash
You can’t perform that action at this time.
0 commit comments