gitreef

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 59b20535b3c2df954e1218f8b5df869dafa44b11
parent b456b3c3c59e240e4b79102317e8ecf6cfbedfa4
Author: Matthias Jaros <jaros@mailbox.org>
Date:   Mon, 30 Mar 2026 14:11:02 +0200

Update before installing to get rid of annoying docker scout messages

Diffstat:
MDockerfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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