about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/.github/actions/github-release/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rust-analyzer/.github/actions/github-release/Dockerfile')
-rw-r--r--src/tools/rust-analyzer/.github/actions/github-release/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/rust-analyzer/.github/actions/github-release/Dockerfile b/src/tools/rust-analyzer/.github/actions/github-release/Dockerfile
new file mode 100644
index 00000000000..5849eac7d24
--- /dev/null
+++ b/src/tools/rust-analyzer/.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"]