2
0
Fork 0
mirror of https://github.com/rust-lang/rust-analyzer synced 2025-01-19 00:23:58 +00:00
rust-analyzer/.github/actions/github-release/Dockerfile
Aleksey Kladov 86ec5b3917 Nightly binary releases
This doesn't publish nightly plugin to the marketplace yet
2020-03-04 17:18:37 +01:00

8 lines
117 B
Docker

FROM node:slim
COPY . /action
WORKDIR /action
RUN npm install --production
ENTRYPOINT ["node", "/action/main.js"]