diff options
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 000000000..5849eac7d --- /dev/null +++ b/.github/actions/github-release/Dockerfile | |||
@@ -0,0 +1,8 @@ | |||
1 | FROM node:slim | ||
2 | |||
3 | COPY . /action | ||
4 | WORKDIR /action | ||
5 | |||
6 | RUN npm install --production | ||
7 | |||
8 | ENTRYPOINT ["node", "/action/main.js"] | ||