UNPKG

543 BPlain TextView Raw
1FROM node:10-slim
2
3LABEL com.github.actions.name="Primer publish"
4LABEL com.github.actions.icon="package"
5LABEL com.github.actions.color="blue"
6
7LABEL version="0.1.0"
8LABEL repository="http://github.com/primer/actions"
9LABEL homepage="http://github.com/primer/actions/tree/master/deploy"
10LABEL maintainer="GitHub Design Systems <design-systems@github.com>"
11
12RUN apt-get update && \
13 apt-get install -y --no-install-recommends git jq
14
15WORKDIR /primer-publish
16COPY . .
17RUN npm install --production
18
19ENTRYPOINT ["/primer-publish/entrypoint.sh"]