-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,24 @@ RUN npm install -g [email protected] @withgraphite/graphite-cli | |
COPY .gitpod/xdebug.ini /etc/php/8.2/mods-available/xdebug.ini | ||
RUN curl -fsSL https://deno.land/x/install/install.sh | sh | ||
RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && \ | ||
echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && \ | ||
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno | ||
echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && \ | ||
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno | ||
|
||
# Install neovim and helpers | ||
RUN wget https://github.com/neovim/neovim/releases/download/v0.9.2/nvim-linux64.tar.gz && \ | ||
tar xzf nvim-linux64.tar.gz && \ | ||
sudo mv nvim-linux64 /usr/local/nvim && \ | ||
sudo ln -s /usr/local/nvim/bin/nvim /usr/local/bin/nvim && \ | ||
rm -rf nvim-linux64.tar.gz | ||
tar xzf nvim-linux64.tar.gz && \ | ||
sudo mv nvim-linux64 /usr/local/nvim && \ | ||
sudo ln -s /usr/local/nvim/bin/nvim /usr/local/bin/nvim && \ | ||
rm -rf nvim-linux64.tar.gz | ||
RUN sudo apt-get install -y fd-find | ||
RUN npm install -g neovim | ||
|
||
# Install phpactor | ||
RUN curl -Lo phpactor.phar https://github.com/phpactor/phpactor/releases/latest/download/phpactor.phar | ||
RUN chmod a+x phpactor.phar | ||
RUN sudo mv phpactor.phar /usr/local/bin/phpactor | ||
|
||
RUN curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_0.40.2_Linux_x86_64.tar.gz" \ | ||
&& tar xf lazygit.tar.gz lazygit \ | ||
&& sudo install lazygit /usr/local/bin | ||
&& tar xf lazygit.tar.gz lazygit \ | ||
&& sudo install lazygit /usr/local/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters