-
-
Notifications
You must be signed in to change notification settings - Fork 9
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 #45 from reviewdog/fixes_44
Removes dependency on 'prologic/remark-lint:latest' and fix #44
- Loading branch information
Showing
5 changed files
with
1,957 additions
and
525 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,15 +1,14 @@ | ||
FROM prologic/remark-lint:latest | ||
FROM node:current-alpine | ||
|
||
ENV REVIEWDOG_VERSION=v0.13.0 | ||
|
||
RUN apk --no-cache add bash~=5.0 | ||
RUN apk --no-cache add git~=2.30 bash~=5.1 | ||
|
||
ENV REVIEWDOG_VERSION=v0.13.0 | ||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh | sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} | ||
RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION} | ||
|
||
RUN apk --no-cache -U add git | ||
RUN npm install -g remark-cli@10.0.0 remark-preset-lint-recommended@6.0.1 remark-lint@9.0.1 | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
RUN chmod +x entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
CMD [] | ||
ENTRYPOINT ["/entrypoint.sh"] |
Oops, something went wrong.