-
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.
Merge branch 'lagoon-voyager' into dev
- Loading branch information
Showing
3 changed files
with
31 additions
and
31 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
FROM gitpod/workspace-full | ||
|
||
RUN bash -c 'VERSION="18.19.0" \ | ||
&& source $HOME/.nvm/nvm.sh && nvm install $VERSION \ | ||
&& nvm use $VERSION && nvm alias default $VERSION' | ||
&& source $HOME/.nvm/nvm.sh && nvm install $VERSION \ | ||
&& nvm use $VERSION && nvm alias default $VERSION' | ||
|
||
RUN echo "nvm use default &>/dev/null" >> ~/.bashrc.d/51-nvm-fix | ||
|
||
RUN sudo update-alternatives --set php $(which php8.2) | ||
RUN sudo install-packages php8.2-gd php8.2-mbstring php8.2-curl php8.2-sqlite3 php8.2-zip php8.2-xdebug php8.2-imagick | ||
RUN pnpx [email protected] install-deps | ||
RUN pnpx [email protected] install | ||
RUN npm install -g pnpm@8.6.12 @withgraphite/graphite-cli | ||
RUN npm install -g pnpm@8.15.9 @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 | ||
|
@@ -19,8 +19,8 @@ RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-den | |
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno | ||
|
||
RUN sudo add-apt-repository ppa:maveonair/helix-editor && \ | ||
sudo apt update && \ | ||
sudo apt install helix | ||
sudo apt update && \ | ||
sudo apt install helix | ||
|
||
# Install phpactor | ||
RUN curl -Lo phpactor.phar https://github.com/phpactor/phpactor/releases/latest/download/phpactor.phar | ||
|
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
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 |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
"author": "Amazee Labs <[email protected]>", | ||
"engines": { | ||
"node": "^18.19.0", | ||
"pnpm": "8.6.12" | ||
"pnpm": "8.15.9" | ||
}, | ||
"packageManager": "pnpm@8.6.12", | ||
"packageManager": "pnpm@8.15.9", | ||
"scripts": { | ||
"postinstall": "husky install || true", | ||
"commit": "git-cz", | ||
|