forked from helaili/github-graphql-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (18 loc) · 689 Bytes
/
Dockerfile
File metadata and controls
25 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM node:10-slim
RUN apt-get update && \
apt-get install --no-install-recommends -y \
jq
LABEL "com.github.actions.name"="GraphQL query"
LABEL "com.github.actions.description"="An action that acts a client for GitHub's GraphQL API"
LABEL "com.github.actions.icon"="database"
LABEL "com.github.actions.color"="purple"
LABEL version="1.0.0"
LABEL repository="http://github.com/helaili/github-graphql-action"
LABEL homepage="http://github.com/helaili/github-graphql-action"
LABEL maintainer="Alain Hélaïli <helaili@github.com>"
ADD package.json /package.json
ADD package-lock.json /package-lock.json
WORKDIR /
RUN npm ci
COPY . /
ENTRYPOINT ["node", "/entrypoint.js"]