Skip to content

Commit 3d09697

Browse files
switch to debian 13
1 parent 7e6f565 commit 3d09697

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Dockerfile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM debian:12-slim
1+
FROM debian:13-slim
22
ARG TARGETPLATFORM
3-
RUN apt update && apt install python3-pip python3 pipx git curl zsh dialog jq yq fzf exa nano neovim locales gettext-base -y
3+
RUN apt update && apt install python3-pip python3 pipx git curl zsh dialog jq yq fzf exa nano neovim locales gettext-base apt-transport-https ca-certificates curl gnupg -y
44
COPY locale.gen /etc/locale.gen
55
RUN locale-gen
66
RUN pipx install pre-commit
@@ -20,14 +20,14 @@ RUN curl --proto '=https' --tlsv1.2 -fsSL https://get.opentofu.org/install-opent
2020

2121
# Sops
2222
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
23-
echo "Performing actions specific to AMD64"; \
24-
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.linux.amd64 && mv sops-v3.9.0.linux.amd64 /usr/bin/sops && chmod +x /usr/bin/sops; \
25-
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
26-
echo "Performing actions specific to ARM64"; \
27-
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.linux.arm64 && mv sops-v3.9.0.linux.arm64 /usr/bin/sops && chmod +x /usr/bin/sops; \
28-
else \
29-
echo "Unknown platform"; \
30-
fi
23+
echo "Performing actions specific to AMD64"; \
24+
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.linux.amd64 && mv sops-v3.9.0.linux.amd64 /usr/bin/sops && chmod +x /usr/bin/sops; \
25+
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
26+
echo "Performing actions specific to ARM64"; \
27+
curl -LO https://github.com/getsops/sops/releases/download/v3.9.0/sops-v3.9.0.linux.arm64 && mv sops-v3.9.0.linux.arm64 /usr/bin/sops && chmod +x /usr/bin/sops; \
28+
else \
29+
echo "Unknown platform"; \
30+
fi
3131

3232
# Helm
3333

0 commit comments

Comments
 (0)