File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ RUN go build -o server
13
13
# # Dev
14
14
FROM build AS dev
15
15
16
- RUN apk add --no-cache build-base ccls py3-lsp-server curl openjdk17
16
+ RUN apk add --no-cache build-base ccls py3-lsp-server curl openjdk17 py-pip
17
+
18
+ RUN pip install pyflakes rope --ignore-installed
17
19
18
20
WORKDIR /jdt
19
21
RUN curl https://download.eclipse.org/jdtls/milestones/1.9.0/jdt-language-server-1.9.0-202203031534.tar.gz --output jdt.tar.gz
@@ -32,7 +34,9 @@ CMD ["make watch"]
32
34
# # Prod
33
35
FROM alpine:latest AS prod
34
36
35
- RUN apk add --no-cache build-base ccls py3-lsp-server curl openjdk17
37
+ RUN apk add --no-cache build-base ccls py3-lsp-server curl openjdk17 py-pip
38
+
39
+ RUN pip install pyflakes rope --ignore-installed
36
40
37
41
WORKDIR /jdt
38
42
RUN curl https://download.eclipse.org/jdtls/milestones/1.9.0/jdt-language-server-1.9.0-202203031534.tar.gz --output jdt.tar.gz
You can’t perform that action at this time.
0 commit comments