Initial commit
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM node:slim
|
||||
|
||||
LABEL "name"="github"
|
||||
LABEL "maintainer"="GitHub Actions <support+actions@github.com>"
|
||||
LABEL "version"="1.0.0"
|
||||
|
||||
LABEL "com.github.actions.name"="GitHub"
|
||||
LABEL "com.github.actions.description"="An action for doing things on GitHub repositories"
|
||||
LABEL "com.github.actions.icon"="briefcase"
|
||||
LABEL "com.github.actions.color"="gray-dark"
|
||||
|
||||
COPY *.md /
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm ci
|
||||
|
||||
COPY entrypoint.js /entrypoint.js
|
||||
|
||||
ENTRYPOINT ["node", "/entrypoint.js"]
|
||||
Reference in New Issue
Block a user