summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2026-03-30 14:11:02 +0200
committerGravatar Matthias Lucas Jaros <jarlucmat@mailbox.org>2026-03-30 14:11:02 +0200
commit777ba0b3299b6d973da336851bf2b26123419518 (patch)
tree2cb0e84f87b3a144a4c1713de9bef7d9dbd1ddca
parent731d6d77bf0ce4cab5255de9ced9d7671b52cb82 (diff)
Update before installing to get rid of annoying docker scout messages
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 3a2f4d7..262b9c1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,7 +2,7 @@ ARG BASE_IMAGE=alpine:latest
FROM ${BASE_IMAGE}
-RUN apk add --no-cache openssh-server fish git sudo tini
+RUN apk update && apk upgrade && apk add --no-cache openssh-server fish git sudo tini
# default uid for git user who has access to all repos
ENV GIT_UID=1000