-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (18 loc) · 724 Bytes
/
Dockerfile
File metadata and controls
24 lines (18 loc) · 724 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
FROM node:10-alpine
LABEL version="1.0.0"
LABEL repository="http://github.com/guahanweb/actions-test"
LABEL homepage="http://github.com/actions"
LABEL maintainer="Garth Henson <garth@guahanweb.com>"
LABEL com.github.actions.name="Node App Helper Actions"
LABEL com.github.actions.description="Provides some helper scripts to aid in basic Node.js app delivery"
LABEL com.github.actions.icon="settings"
LABEL com.github.actions.color="green"
# install additional dependencies
RUN apk --update add git openssh bash && \
rm -rf /var/lib/apt/lists/* && \
rm /var/cache/apk/*
# COPY LICENSE README.md /
COPY "helpers.sh" "/helpers.sh"
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]