Created
January 3, 2018 15:57
-
-
Save jmcarbo/8970395405140f3c6e3e3f97e6f10b31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
RUN apt-get update && apt-get install -y curl jq wget | |
RUN wget $(curl https://api.github.com/repos/containous/traefik/releases/latest| jq -r '.assets[] | select(.name == "traefik_linux-arm")| .browser_download_url') | |
RUN install traefik_linux-arm /usr/local/bin/traefik && chmod +x /usr/local/bin/traefik && rm traefik_linux-arm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment