* ADD: initial commit

This commit is contained in:
2024-01-20 11:52:52 +01:00
parent 95fc557025
commit 31054ebf7d
41 changed files with 1466 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM alpine:latest
LABEL maintainer.name="Uwe Hermann"\
maintainer.email="uh@uleenucks.de"
ADD app /app
RUN chmod +x /app/*.sh \
&& apk add --no-cache \
postgresql15-client \
tzdata \
7zip \
bash \
supercronic
HEALTHCHECK CMD [ "/app/healthcheck.sh" ]
ENTRYPOINT ["/app/entrypoint.sh"]