File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1713,8 +1713,10 @@ FROM --platform=linux/$ARCH setup_mig_configs AS start_mig
17131713ARG DOMAIN
17141714
17151715# Reap defuncted/orphaned processes
1716+ # IMPORTANT: always verify tini gpg signature and use checksum in download here
17161717ARG TINI_VERSION=v0.18.0
1717- ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
1718+ ARG TINI_CHECKSUM=sha256:12d20136605531b09a2c2dac02ccee85e1b874eb322ef6baf7561cd93f93c855
1719+ ADD --checksum=${TINI_CHECKSUM} https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
17181720RUN chmod +x /tini
17191721ENTRYPOINT ["/tini", "--"]
17201722
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ RUN echo "Enable python3 support: $WITH_PY3"
302302#RUN echo "Enable git checkout: $WITH_GIT"
303303
304304#------------------------- next stage -----------------------------#
305- FROM --platform=linux/$ARCH init as base
305+ FROM --platform=linux/$ARCH init AS base
306306ARG DOMAIN
307307ARG WILDCARD_DOMAIN
308308ARG ENABLE_GDP
@@ -1600,8 +1600,10 @@ FROM --platform=linux/$ARCH setup_mig_configs AS start_mig
16001600ARG DOMAIN
16011601
16021602# Reap defuncted/orphaned processes
1603+ # IMPORTANT: always verify tini gpg signature and use checksum in download here
16031604ARG TINI_VERSION=v0.18.0
1604- ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
1605+ ARG TINI_CHECKSUM=sha256:12d20136605531b09a2c2dac02ccee85e1b874eb322ef6baf7561cd93f93c855
1606+ ADD --checksum=${TINI_CHECKSUM} https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
16051607RUN chmod +x /tini
16061608ENTRYPOINT ["/tini", "--"]
16071609
You can’t perform that action at this time.
0 commit comments