-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from rcousineau-xandr/content-type-json
set content-type on webhook curl request
- Loading branch information
Showing
2 changed files
with
3 additions
and
5 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,10 @@ | ||
FROM ubuntu:22.04 | ||
|
||
ADD http://stedolan.github.io/jq/download/linux64/jq /usr/local/bin/jq | ||
|
||
COPY check /opt/resource/check | ||
COPY in /opt/resource/in | ||
COPY out /opt/resource/out | ||
|
||
RUN chmod +x /usr/local/bin/jq /opt/resource/out /opt/resource/in /opt/resource/check && \ | ||
RUN chmod +x /opt/resource/out /opt/resource/in /opt/resource/check && \ | ||
apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y curl | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y curl jq | ||
|
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