Dockerfile aktualisiert
All checks were successful
Create postgresql docker image / Explore-Gitea-Actions (push) Successful in 15s

This commit is contained in:
Marko Oldenburg 2024-09-26 12:40:54 +00:00
parent c423b2b801
commit d25dcc903f

View File

@ -7,6 +7,9 @@ ARG VERSION=16-20240926
RUN apk update --no-cache ; \
apk add --no-cache postgresql16-client
# Erstelle einen Benutzer mit UID 26
RUN adduser -u 1000 -D -S backupuser
# Arbeitsverzeichnis erstellen
WORKDIR /backup
@ -16,7 +19,8 @@ COPY entrypoint.sh /usr/local/bin/entrypoint.sh
# Skript ausführbar machen
RUN chmod +x /usr/local/bin/entrypoint.sh
USER 26
# Wechsle den Benutzer auf den erstellten Benutzer mit UID 26
USER 1000
# Festlegen des EntryPoints für das Docker-Image
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]