]> git.lizzy.rs Git - rust.git/blob - .github/actions/github-release/Dockerfile
Auto merge of #13545 - Veykril:adjustment-hints, r=Veykril
[rust.git] / .github / actions / github-release / Dockerfile
1 FROM node:slim
2
3 COPY . /action
4 WORKDIR /action
5
6 RUN npm install --production
7
8 ENTRYPOINT ["node", "/action/main.js"]