diff options
author | Subho Banerjee <[email protected]> | 2021-09-30 11:53:14 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-30 18:53:14 +0200 |
commit | e270bdbd6f9adfd9ae471512c63c3283798481f1 (patch) | |
tree | 41e594e199a0b118a2208293fe8a214545b5f7f7 /utils/docker/Dockerfile | |
parent | 8ec92c0420374097f1a617fe91cd6f6a5503c5b0 (diff) |
[Bugfix]: Use local install in Github actions (#1628)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to 'utils/docker/Dockerfile')
-rw-r--r-- | utils/docker/Dockerfile | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/utils/docker/Dockerfile b/utils/docker/Dockerfile deleted file mode 100644 index 5a3b2f61..00000000 --- a/utils/docker/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -FROM ubuntu:latest - -ARG NEOVIM_RELEASE=v0.5.0 -ARG LVBRANCH=rolling - -ENV DEBIAN_FRONTEND=noninteractive - -# Install apt dependencies -RUN apt update && \ - apt -y install sudo curl build-essential git fzf python3-dev python3-pip cargo && \ - curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \ - apt update && \ - apt -y install nodejs && \ - curl -L -o /tmp/nvim.appimage https://github.com/neovim/neovim/releases/download/${NEOVIM_RELEASE}/nvim.appimage && \ - chmod u+x /tmp/nvim.appimage && \ - /tmp/nvim.appimage --appimage-extract && \ - mv squashfs-root /usr/local/neovim && \ - ln -s /usr/local/neovim/usr/bin/nvim /usr/bin/nvim && \ - apt clean && rm -rf /var/lib/apt/lists/* /tmp/* && \ - LVBRANCH=${LVBRANCH} curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh | bash -s -- -y - -ENV PATH="/root/.local/bin:/root/.cargo/bin:/root/.npm-global/bin${PATH}" - -ENTRYPOINT ["/bin/bash"] -CMD ["lvim"] |