Update Dockerfile to use apk for package installation and remove unnecessary apt commands

This commit is contained in:
Nils-Johan Gynther
2026-05-12 19:52:26 +02:00
parent 7a47b97a11
commit a6309679f7
+3 -5
View File
@@ -5,9 +5,7 @@ USER root
# Docker CLI behövs för shell-jobb som kör docker-kommandon direkt
# openssh-client behövs för deployment-scripts via SSH
# curl allmänt användbart i workflow-steg
RUN apt-get update && \
apt-get install -y --no-install-recommends \
RUN apk add --no-cache \
curl \
docker.io \
openssh-client \
&& rm -rf /var/lib/apt/lists/*
docker-cli \
openssh-client