rust/src/tools/rust-analyzer/.github/actions/github-release/Dockerfile
2024-04-21 16:26:55 +02:00

8 lines
117 B
Docker

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