Add catatonit in the docker image
ci/woodpecker/push/container Pipeline was successful Details

This commit is contained in:
SeanOMik 2024-05-19 10:14:20 -04:00
parent 85074bb5b4
commit d62e928a99
Signed by: SeanOMik
GPG Key ID: FEC9E2FC15235964
1 changed files with 11 additions and 3 deletions

View File

@ -23,8 +23,13 @@ RUN cargo build --release
# Runner stage.
FROM alpine
RUN apk update && \
apk add curl
RUN apk update \
&& apk add --no-cache \
curl \
catatonit \
&& rm -rf \
/root/.cache \
/tmp/*
ARG UNAME=port_updater
ARG UID=1000
@ -38,4 +43,7 @@ USER $UNAME
WORKDIR /app
ENTRYPOINT [ "/app/gluetun-qbit-port-updater" ]
ENTRYPOINT ["/usr/bin/catatonit", "--"]
CMD ["/app/gluetun-qbit-port-updater"]
LABEL org.opencontainers.image.source="https://git.seanomik.net/SeanOMik/gluetun-qbit-port-updater"