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
2 changes: 1 addition & 1 deletion docker/ddns/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine
FROM golang:1.26.5-alpine

ENV DO_NOT_TRACK=true

Expand Down
4 changes: 3 additions & 1 deletion scripts/dist/install-admin-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ sudo GOBIN="/usr/local/bin" go install github.com/muesli/duf@latest
sudo ln -sf /usr/local/bin/duf /usr/local/bin/df

echo "Installing muffet, a tool for checking links..."
sudo GOBIN="/usr/local/bin" go install github.com/raviqqe/muffet@latest
# The module path must carry the major version: "muffet@latest" still resolves to the
# v1 line (v1.5.7), so only "/v2" installs a current release.
sudo GOBIN="/usr/local/bin" go install github.com/raviqqe/muffet/v2@latest

echo "Installing petname to generate pronounceable names..."
sudo GOBIN="/usr/local/bin" go install github.com/dustinkirkland/golang-petname/cmd/petname@latest
Loading