File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ This Docker image adds the [diffy cli](https://github.com/DiffyWebsite/diffy-cli
88
99* To generate new images for the latest diffy cli version:
1010* * Go to the [ diffy cli repo] ( https://github.com/DiffyWebsite/diffy-cli ) and find the latest version.
11- * * Update the ` src/Dockerfile ` and set the docker image tag to the latest version number: ex ` 0.1.22 `
11+ * * Update the ` src/Dockerfile ` and set the DIFFY_VERSION variable to the desired version.
1212* * Commit and tag the main branch with ` v ` followed by the version number: ex ` v0.1.22 `
13- * * Push the udpates and tag upstream.
13+ * * Push the updates and tag upstream.
1414
1515## Security Reports
1616
Original file line number Diff line number Diff line change 11FROM alpine:latest
2+ ARG DIFFY_VERSION=0.1.22
23RUN apk update && \
34 apk add openssl php php-openssl php-phar php-iconv && \
4- wget -O /usr/local/bin/diffy https://github.com/DiffyWebsite/diffy-cli/releases/download/0.1.22 /diffy.phar && \
5+ wget -O /usr/local/bin/diffy https://github.com/DiffyWebsite/diffy-cli/releases/download/${DIFFY_VERSION} /diffy.phar && \
56 chmod u+x /usr/local/bin/diffy
You can’t perform that action at this time.
0 commit comments