2
0
Fork 0
mirror of https://github.com/rust-lang/rust-analyzer synced 2025-01-15 14:43:58 +00:00
rust-analyzer/.github/actions/github-release/Dockerfile

9 lines
117 B
Docker
Raw Normal View History

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