aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/github-release/Dockerfile
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2021-05-03 12:32:40 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2021-05-03 12:32:40 +0200
commitb53ed8d5c433ba659f50e05d34dfed9582d2613e (patch)
treead8a7a97e9f5d2f66ac1b4e89158059c580070a2 /.github/actions/github-release/Dockerfile
parent6f6f95c000edb7305371f96d466731122ac54178 (diff)
add github action
Diffstat (limited to '.github/actions/github-release/Dockerfile')
-rw-r--r--.github/actions/github-release/Dockerfile8
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"]