improved diff for journal

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-01-12 22:40:38 +01:00
parent 214eb652e1
commit 3524bae1d8
5 changed files with 13 additions and 14 deletions

View File

@@ -1,7 +1,10 @@
FROM alpine:3.22
LABEL Maintainer "Stephan Richter <s.richter@srsoftware.de>"
ARG UID=1000
ARG GID=1000
RUN apk add bash npm
RUN adduser -Dh /home/svelte svelte
RUN set -x; addgroup -g $GID svelte
RUN adduser -u $UID -G svelte -Dh /home/svelte svelte
ADD script /opt
USER svelte
WORKDIR /home/svelte