Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ RUN <<EOT bash -euo pipefail
wget \
git \
openssl \
procps
procps \
jq

curl -sL https://deb.nodesource.com/setup_lts.x -o nodesource_setup.sh
bash nodesource_setup.sh
Expand Down Expand Up @@ -50,8 +51,11 @@ RUN <<EOT bash -euo pipefail

devspace add plugin https://github.com/loft-sh/loft-devspace-plugin

curl -fsSL -o loft "https://github.com/loft-sh/loft/releases/latest/download/loft-linux-\$ARCH_SHORT"
chmod +x loft
LOFT_URL=\$(curl -fsSL https://api.github.com/repos/loft-sh/loft/releases/latest \
| jq --arg arch \${ARCH_SHORT}.tar.gz -r \
'.assets[] | select(.name | test(\$arch)) | .browser_download_url')
curl -fsSL -o loft.tar.gz \$LOFT_URL
tar xzf loft.tar.gz loft
install -p loft /usr/local/bin;
rm loft
rm loft.tar.gz
EOT