diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-03 12:32:40 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-03 12:32:40 +0200 |
| commit | b53ed8d5c433ba659f50e05d34dfed9582d2613e (patch) | |
| tree | ad8a7a97e9f5d2f66ac1b4e89158059c580070a2 /.github/actions/github-release/Dockerfile | |
| parent | 6f6f95c000edb7305371f96d466731122ac54178 (diff) | |
add github action
Diffstat (limited to '.github/actions/github-release/Dockerfile')
| -rw-r--r-- | .github/actions/github-release/Dockerfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/actions/github-release/Dockerfile b/.github/actions/github-release/Dockerfile new file mode 100644 index 0000000..5849eac --- /dev/null +++ b/.github/actions/github-release/Dockerfile @@ -0,0 +1,8 @@ +FROM node:slim + +COPY . /action +WORKDIR /action + +RUN npm install --production + +ENTRYPOINT ["node", "/action/main.js"] |