-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use git builtin instead of find (#1)
Dockerfile updates update path of reviewdog binary install reviewdog binary in the same way as they are doing for their own actions Signed-off-by: Felix Bartels <felix@host-consultants.de>
- Loading branch information
Showing
3 changed files
with
12 additions
and
6 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,10 +1,16 @@ | ||
FROM alpine:3.10 | ||
|
||
RUN apk add --update --no-cache git | ||
RUN wget -q https://github.com/hadolint/hadolint/releases/download/v1.17.3/hadolint-Linux-x86_64 -O /bin/hadolint \ | ||
&& chmod +x /bin/hadolint | ||
ENV \ | ||
HADOLINT_VERSION=1.17.3 \ | ||
REVIEWDOG_VERSION=0.9.14 | ||
|
||
# hadolint ignore=DL3018 | ||
RUN apk add --no-cache git | ||
RUN wget -q https://github.com/hadolint/hadolint/releases/download/v$HADOLINT_VERSION/hadolint-Linux-x86_64 -O /usr/local/bin/hadolint \ | ||
&& chmod +x /usr/local/bin/hadolint | ||
|
||
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ v$REVIEWDOG_VERSION | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
COPY bin/reviewdog /bin/reviewdog | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
Binary file not shown.
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