-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (14 loc) · 678 Bytes
/
Dockerfile
File metadata and controls
19 lines (14 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM node:alpine
LABEL "com.github.actions.name"="Expo Semantic Release"
LABEL "com.github.actions.description"="An Expo implementation for semantic release, so you don't have to bother."
LABEL "com.github.actions.icon"="chevron-up"
LABEL "com.github.actions.color"="purple"
LABEL "repository"="https://github.com/mgibeau/semantic-release-expo-github-action"
LABEL "homepage"="https://github.com/byCedric/semantic-release-expo"
LABEL "maintainer"="Octocat <[email protected]>"
RUN apk add git
RUN npm install --global semantic-release semantic-release-expo \
&& npm cache rm --force \
&& rm -rf ~/.npm
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]