20 lines
470 B
Docker
20 lines
470 B
Docker
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"]
|