Skip to content

Commit 93b3e12

Browse files
committed
Fix NeoVim binary downloads
1 parent a377e4b commit 93b3e12

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

collector/Containerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ RUN dnf install -y epel-release && \
1414
# Clone my configuration
1515
git clone https://github.com/molter73/dotfiles "${HOME}/.config" && \
1616
# Install NeoVim
17-
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz && \
18-
tar -C /opt -xzf nvim-linux64.tar.gz && \
19-
rm -f nvim-linux64.tar.gz && \
17+
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz && \
18+
tar -C /opt -xzf nvim-linux-x86_64.tar.gz && \
19+
rm -f nvim-linux-x86_64.tar.gz && \
2020
# Install tree-sitter
2121
curl -LO https://github.com/tree-sitter/tree-sitter/releases/latest/download/tree-sitter-linux-x64.gz && \
2222
gunzip -c tree-sitter-linux-x64.gz > /usr/local/bin/tree-sitter && \
@@ -27,7 +27,7 @@ RUN dnf install -y epel-release && \
2727
# Install my configuration
2828
"${HOME}/.config/zsh/install.sh" && \
2929
"${HOME}/.config/scripts/install.sh" && \
30-
/opt/nvim-linux64/bin/nvim --headless "+Lazy! restore" +qa
30+
/opt/nvim-linux-x86_64/bin/nvim --headless "+Lazy! restore" +qa
3131

3232
COPY clangd.yaml /root/.config/clangd/config.yaml
3333

falco-libs/Containerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ RUN dnf install -y \
6767
# Clone my configuration
6868
git clone https://github.com/molter73/dotfiles "${HOME}/.config" && \
6969
# Install NeoVim
70-
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz && \
71-
tar -C /opt -xzf nvim-linux64.tar.gz && \
72-
rm -f nvim-linux64.tar.gz && \
70+
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz && \
71+
tar -C /opt -xzf nvim-linux-x86_64.tar.gz && \
72+
rm -f nvim-linux-x86_64.tar.gz && \
7373
# Install tree-sitter
7474
curl -LO https://github.com/tree-sitter/tree-sitter/releases/latest/download/tree-sitter-linux-x64.gz && \
7575
gunzip -c tree-sitter-linux-x64.gz > /usr/local/bin/tree-sitter && \
@@ -80,7 +80,7 @@ RUN dnf install -y \
8080
# Install my configuration
8181
"${HOME}/.config/zsh/install.sh" && \
8282
"${HOME}/.config/scripts/install.sh" && \
83-
/opt/nvim-linux64/bin/nvim --headless "+Lazy! restore" +qa
83+
/opt/nvim-linux-x86_64/bin/nvim --headless "+Lazy! restore" +qa
8484

8585
COPY clangd.yaml /root/.config/clangd/config.yaml
8686
COPY compile-falco.sh /usr/local/bin/

0 commit comments

Comments
 (0)