-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7255c1c
commit e5659a0
Showing
2 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM alpine:3.6 | ||
LABEL maintainer="[email protected]" | ||
|
||
RUN apk --no-cache add bash | ||
RUN apk --no-cache add --update curl wget ca-certificates | ||
RUN apk --no-cache add jq | ||
|
||
ENV SPRUCE_VERSION 1.13.1 | ||
RUN wget https://github.com/geofffranks/spruce/releases/download/v${SPRUCE_VERSION}/spruce-linux-amd64 \ | ||
&& chmod a+x spruce-linux-amd64 \ | ||
&& mv spruce-linux-amd64 /usr/local/bin/spruce \ |
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