18 lines
320 B
Docker
18 lines
320 B
Docker
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"]
|