File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ ENTRYPOINT ["nvim"]
66
66
67
67
68
68
FROM base AS custom
69
+ ENV COLORIZE_VERSION=0.4.0
69
70
ENV PATH="$PATH:/venv/bin:/color_blame_venv/bin:/lua-language-server/bin"
70
71
71
72
RUN apk update && apk add --no-cache \
@@ -75,14 +76,21 @@ RUN apk update && apk add --no-cache \
75
76
fzf \
76
77
bash \
77
78
ripgrep \
79
+ libffi-dev \
78
80
less
79
81
80
- COPY --from=color_blame /venv /color_blame_venv
81
82
COPY --from=py-builder /venv /venv
82
83
83
84
COPY --from=builder /usr/local/bin/ctags /usr/local/bin/ctags
84
85
COPY --from=builder /lua-language-server /lua-language-server
85
86
87
+ COPY --from=color_blame /venv /color_blame_venv
88
+ COPY --from=color_blame /color_blame_src /color_blame_src
89
+
90
+ WORKDIR /color_blame_src/dist
91
+ RUN /color_blame_venv/bin/pip install colorize-*-py3-none-any.whl
92
+
93
+ WORKDIR /files
86
94
87
95
COPY . /root/.config/nvim
88
96
You can’t perform that action at this time.
0 commit comments