Skip to content

Commit

Permalink
Added CURL and JQ to Dockerfile (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithconvictional authored Jul 8, 2020
1 parent 30a12fb commit 1b91bfd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# https://hub.docker.com/_/alpine
FROM alpine:latest

RUN apk update
RUN apk --no-cache add curl
RUN apk add jq

COPY entrypoint.sh /entrypoint.sh

ENTRYPOINT ["sh", "/entrypoint.sh"]
6 changes: 6 additions & 0 deletions contribute.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Contribute


```
docker build . -t trigger-workflow-and-wait
```

0 comments on commit 1b91bfd

Please sign in to comment.