mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
86ec5b3917
This doesn't publish nightly plugin to the marketplace yet
8 lines
117 B
Docker
8 lines
117 B
Docker
FROM node:slim
|
|
|
|
COPY . /action
|
|
WORKDIR /action
|
|
|
|
RUN npm install --production
|
|
|
|
ENTRYPOINT ["node", "/action/main.js"]
|