-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cloudflared #138
Add cloudflared #138
Conversation
uptime-kuma/Dockerfile
Outdated
RUN curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o /usr/bin/cloudflared \ | ||
&& chmod +x /usr/bin/cloudflared |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi there @samuelleb11 👋
Two things:
- We don't have to create an additional Docker layer, just add it to the sequence above
- The
cloudflared
ain't versioned. I rather have a version locked (so builds are reproducible, caches work properly, and we can ship updates if needed).
For the latter, please add an entry to the renovate configuration as well. We can pick up the latest information from: https://github.com/cloudflare/cloudflared/releases
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment above
I took the liberty to address the comments.
../Frenck |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, @samuelleb11 👍
../Frenck
Proposed Changes
Related Issues