-
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.
chore: update alpine to 3.9 and spruce to 1.20.0
- Loading branch information
1 parent
2cc4bcd
commit ad505b4
Showing
1 changed file
with
2 additions
and
2 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,12 +1,12 @@ | ||
FROM alpine:3.8 | ||
FROM alpine:3.9 | ||
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 | ||
RUN apk --no-cache add gnupg | ||
|
||
ENV SPRUCE_VERSION 1.18.2 | ||
ENV SPRUCE_VERSION 1.20.0 | ||
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 |