File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
3232COPY clangd.yaml /root/.config/clangd/config.yaml
3333
Original file line number Diff line number Diff 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
8585COPY clangd.yaml /root/.config/clangd/config.yaml
8686COPY compile-falco.sh /usr/local/bin/
You can’t perform that action at this time.
0 commit comments