From 1b91bfd1001ab3deb961b6e36d261da5877c4410 Mon Sep 17 00:00:00 2001 From: Keith Weaver <64023834+keithconvictional@users.noreply.github.com> Date: Wed, 8 Jul 2020 09:33:17 -0400 Subject: [PATCH] Added CURL and JQ to Dockerfile (#1) --- Dockerfile | 4 ++++ contribute.md | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 contribute.md diff --git a/Dockerfile b/Dockerfile index d8d790b..784f9d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/contribute.md b/contribute.md new file mode 100644 index 0000000..79a0873 --- /dev/null +++ b/contribute.md @@ -0,0 +1,6 @@ +# Contribute + + +``` +docker build . -t trigger-workflow-and-wait +```