summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Matthias Jaros <jarlucmat@mailbox.org>2026-03-30 14:11:02 +0200
committerGravatar Matthias Jaros <jarlucmat@mailbox.org>2026-03-30 14:11:02 +0200
commit667b64bd5aeac0272d536461eabd3cb52f628130 (patch)
tree2cb0e84f87b3a144a4c1713de9bef7d9dbd1ddca /Dockerfile
parent021064bc714ffe2afc456c3319c14447721b3b93 (diff)
Update before installing to get rid of annoying docker scout messages
Diffstat (limited to 'Dockerfile')
-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