-
-
Notifications
You must be signed in to change notification settings - Fork 54
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 #66 from kentaro-m/add-support-github-actions
Add Dockerfile to support for GitHub Actions
- Loading branch information
Showing
4 changed files
with
43 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM node:10 | ||
|
||
LABEL "com.github.actions.name"="Auto Assign" | ||
LABEL "com.github.actions.description"="Add reviewers/assignees to pull requests when pull requests are opened." | ||
LABEL "com.github.actions.icon"="user-plus" | ||
LABEL "com.github.actions.color"="blue" | ||
|
||
LABEL "repository"="https://github.com/kentaro-m/auto-assign" | ||
LABEL "homepage"="https://probot.github.io/apps/auto-assign/" | ||
LABEL "maintainer"="Kentaro Matsushita" | ||
|
||
ENV PATH=$PATH:/app/node_modules/.bin | ||
WORKDIR /app | ||
COPY . . | ||
RUN npm install --production && npm run build | ||
|
||
ENTRYPOINT ["probot", "receive"] | ||
CMD ["/app/lib/index.js"] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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