chore(docker): add tini (#153)

snyk
salty 1 year ago committed by GitHub
parent e03caa2a36
commit dcbe07a68c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,7 +20,7 @@ ENV PATH="${PATH}:/app/recyclarr" \
RECYCLARR_CREATE_CONFIG=false
RUN set -ex; \
apk add --no-cache bash tzdata supercronic git; \
apk add --no-cache bash tzdata supercronic git tini; \
mkdir -p /config && chown 1000:1000 /config;
COPY --from=build /build/publish /app/recyclarr/
@ -29,4 +29,4 @@ COPY --chmod=555 ./scripts/prod/*.sh /
USER 1000:1000
VOLUME /config
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"]

Loading…
Cancel
Save