Skip to content

Commit

Permalink
Add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
msiegenthaler committed Nov 16, 2017
1 parent 7255c1c commit e5659a0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Dockerfile
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 \
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,13 @@

Docker image the contains utils for YAML and JSON processing.

Usage: `docker run linkyard/yaml`
## Contains
- jq
- spruce
- curl
- wget
- bash


## Usage
`docker run linkyard/yaml`

0 comments on commit e5659a0

Please sign in to comment.