Skip to content

Commit bca31ca

Browse files
committed
Install colorize from wheel in Deckerfile
1 parent a01e0c5 commit bca31ca

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Dockerfile

+9-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ ENTRYPOINT ["nvim"]
6666

6767

6868
FROM base AS custom
69+
ENV COLORIZE_VERSION=0.4.0
6970
ENV PATH="$PATH:/venv/bin:/color_blame_venv/bin:/lua-language-server/bin"
7071

7172
RUN apk update && apk add --no-cache \
@@ -75,14 +76,21 @@ RUN apk update && apk add --no-cache \
7576
fzf \
7677
bash \
7778
ripgrep \
79+
libffi-dev \
7880
less
7981

80-
COPY --from=color_blame /venv /color_blame_venv
8182
COPY --from=py-builder /venv /venv
8283

8384
COPY --from=builder /usr/local/bin/ctags /usr/local/bin/ctags
8485
COPY --from=builder /lua-language-server /lua-language-server
8586

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
8694

8795
COPY . /root/.config/nvim
8896

0 commit comments

Comments
 (0)