Skip to content

Commit

Permalink
fix: fix monitor (#1849)
Browse files Browse the repository at this point in the history
* feat: fix monitor

* feat: fix monitor
  • Loading branch information
DokiDoki1103 authored Jan 16, 2024
1 parent d6a3ebc commit 84baabf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/contrib/docker/monitor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ ENV RELEASE_DESC=${RELEASE_DESC}
COPY rainbond-monitor /run/rainbond-monitor

RUN if [ $(arch) = "arm64" ] || [ $(arch) = "aarch64" ]; then \
wget https://pkg.goodrain.com/pkg/tini/v0.19.0/tini-arm -O /bin/tini && chmod +x /bin/tini; \
wget --no-check-certificate https://pkg.goodrain.com/pkg/tini/v0.19.0/tini-static-arm64 -O /bin/tini && chmod +x /bin/tini; \
else \
wget https://pkg.goodrain.com/pkg/tini/v0.19.0/tini -O /bin/tini && chmod +x /bin/tini; \
wget --no-check-certificate https://pkg.goodrain.com/pkg/tini/v0.19.0/tini-static-amd64 -O /bin/tini && chmod +x /bin/tini; \
fi

ADD entrypoint.sh /run/entrypoint.sh
Expand Down

0 comments on commit 84baabf

Please sign in to comment.