Skip to content

Commit

Permalink
Add biomejs (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
naa0yama authored Aug 5, 2024
1 parent cef9355 commit 1e0f356
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ RUN set -eux && \
curl \
git \
gpg-agent \
jq \
man \
man-db \
mtr \
Expand Down Expand Up @@ -83,6 +84,13 @@ RUN set -eux && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*

# Add Biome latest install
RUN set -eux && \
curl -fSL -o /usr/local/bin/biome "$(curl -sfSL https://api.github.com/repos/biomejs/biome/releases/latest | \
jq -r '.assets[] | select(.name | endswith("linux-x64")) | .browser_download_url')" && \
chmod +x /usr/local/bin/biome && \
type -p biome

# Install fish-shell
RUN set -eux && \
apt-add-repository -y ppa:fish-shell/release-3 && \
Expand Down

0 comments on commit 1e0f356

Please sign in to comment.