aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index b5dac93..ac339f7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,13 +7,13 @@ RUN apk --no-cache add \
automake \
bash \
build-base \
- cargo \
cmake \
coreutils \
curl \
gettext-tiny-dev \
git \
libtool \
+ luacheck \
pkgconf \
unzip \
wget
@@ -24,7 +24,4 @@ WORKDIR /tmp/nvim
RUN git clone --depth 1 --branch ${NEOVIM_VERSION} https://github.com/neovim/neovim . && \
make CMAKE_BUILD_TYPE=Release && \
make install && \
- cargo install stylua && \
rm -rf /tmp/nvim
-
-ENV PATH="/root/.cargo/bin:${PATH}"