Skip to content
Open
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
8 changes: 7 additions & 1 deletion bin/core/debian-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
## Core deps installer

apt-get update
apt-get install -y git curl ca-certificates iproute2
apt-get install -y git curl ca-certificates iproute2 age

# Sops only available as a binary
SOPS_VERSION="v3.11.0"
ARCH=$(dpkg --print-architecture)
curl -L "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.${ARCH}" -o /usr/local/bin/sops
chmod +x /usr/local/bin/sops

rm -rf /var/lib/apt/lists/*

Expand Down
8 changes: 7 additions & 1 deletion bin/periphery/debian-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Periphery deps installer

apt-get update
apt-get install -y git curl wget ca-certificates
apt-get install -y git curl wget ca-certificates age

install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
Expand All @@ -19,6 +19,12 @@ apt-get update
# apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
apt-get install -y docker-ce-cli docker-buildx-plugin docker-compose-plugin

# Sops only available as a binary
SOPS_VERSION="v3.11.0"
ARCH=$(dpkg --print-architecture)
curl -L "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.${ARCH}" -o /usr/local/bin/sops
chmod +x /usr/local/bin/sops

rm -rf /var/lib/apt/lists/*

# Starship prompt
Expand Down