rust/.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"]