generated from ddev/ddev-addon-template
-
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
6 changed files
with
26 additions
and
3 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
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 |
---|---|---|
|
@@ -23,11 +23,22 @@ RUN wget -q https://github.com/charmbracelet/gum/releases/download/v0.14.1/gum_0 | |
RUN echo "deb http://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_`lsb_release -rs`/ /" | sudo tee /etc/apt/sources.list.d/shells:fish:release:3.list | ||
RUN curl -fsSL https://download.opensuse.org/repositories/shells:fish:release:3/Debian_`lsb_release -rs`/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/shells_fish_release_3.gpg > /dev/null | ||
RUN apt update && apt satisfy -y "fish (>=3.7.1)" | ||
|
||
## | ||
# Tools to install under ddev non-root user | ||
# | ||
USER $uid:$gid | ||
|
||
# Fish plugins | ||
RUN fish -c "curl -sL 'https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish' | source && fisher install jorgebucaran/[email protected]" | ||
RUN \ | ||
fish -c "fisher install IlanCosman/[email protected]" ; \ | ||
fish -c "fisher install edc/[email protected]" | ||
|
||
# bun.sh | ||
RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.1.11" | ||
|
||
# Go back to root | ||
USER root:root | ||
|
||
# kitty-terminfo from unstable, using its snapshot to make sure there's always gonna ver a version | ||
|
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
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 |
---|---|---|
|
@@ -23,11 +23,22 @@ RUN wget -q https://github.com/charmbracelet/gum/releases/download/v0.14.1/gum_0 | |
RUN echo "deb http://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_`lsb_release -rs`/ /" | sudo tee /etc/apt/sources.list.d/shells:fish:release:3.list | ||
RUN curl -fsSL https://download.opensuse.org/repositories/shells:fish:release:3/Debian_`lsb_release -rs`/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/shells_fish_release_3.gpg > /dev/null | ||
RUN apt update && apt satisfy -y "fish (>=3.7.1)" | ||
|
||
## | ||
# Tools to install under ddev non-root user | ||
# | ||
USER $uid:$gid | ||
|
||
# Fish plugins | ||
RUN fish -c "curl -sL 'https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish' | source && fisher install jorgebucaran/[email protected]" | ||
RUN \ | ||
fish -c "fisher install IlanCosman/[email protected]" ; \ | ||
fish -c "fisher install edc/[email protected]" | ||
|
||
# bun.sh | ||
RUN curl -fsSL https://bun.sh/install | bash -s "bun-v1.1.11" | ||
|
||
# Go back to root | ||
USER root:root | ||
|
||
# kitty-terminfo from unstable, using its snapshot to make sure there's always gonna ver a version | ||
|