aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristian Segundo2023-10-08 22:44:01 +0200
committerChristian Segundo2023-10-08 22:57:58 +0200
commitc2b83a834852d5dcbaa20a3e8f244b2f6ea00769 (patch)
treeecbde8f4126ad47bbf749d308ff558fc1683e21c /Dockerfile
parentcc162e4e9aa712f280656f8a0cc69656abddd9e2 (diff)
downloadnvim-c2b83a834852d5dcbaa20a3e8f244b2f6ea00769.tar.gz
add luacheck
Diffstat (limited to 'Dockerfile')
-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}"