Added basic action structure

This commit is contained in:
2020-03-17 13:45:30 +01:00
parent 48145e2418
commit 3c94ba960d
4 changed files with 97 additions and 0 deletions

4
Dockerfile Normal file
View File

@@ -0,0 +1,4 @@
FROM node:lts-alpine3.9
RUN apk update && apk upgrade && apk add --no-cache bash git openssh
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]