-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add child phases to info endpoint (#139)
* add child phases to info endpoint * update dockerfile
- Loading branch information
1 parent
b40f6aa
commit 8c5e7f5
Showing
3 changed files
with
38 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,21 @@ | ||
|
||
FROM alpine:3.10.2 | ||
ADD https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-amd64 /usr/bin/confd | ||
FROM alpine:3.12 | ||
|
||
RUN chmod +x /usr/bin/confd | ||
RUN apk add ca-certificates | ||
RUN apk add curl | ||
RUN apk add jq | ||
|
||
#confd | ||
ADD https://github.com/kelseyhightower/confd/releases/download/v0.16.0/confd-0.16.0-linux-amd64 /usr/bin/confd | ||
RUN chmod +x /usr/bin/confd | ||
|
||
#gojq | ||
ADD https://github.com/itchyny/gojq/releases/download/v0.12.0/gojq_v0.12.0_linux_amd64.tar.gz /tmp/jq.tar.gz | ||
RUN cd /tmp && tar -xzf jq.tar.gz | ||
RUN cp /tmp/gojq_v0.12.0_linux_amd64/gojq /usr/bin/jq | ||
RUN rm -rf /tmp/* | ||
|
||
#ll | ||
RUN echo -e "#!/bin/sh \n ls -Alhp \$1" > /usr/bin/ll | ||
RUN chmod +x /usr/bin/ll | ||
|
||
COPY build/ /usr/bin/ |
This file contains 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
This file contains 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