blob: 5849eac7d246a30549ffff371a5e54ae0d099967 [file] [log] [blame]
FROM node:slim
COPY . /action
WORKDIR /action
RUN npm install --production
ENTRYPOINT ["node", "/action/main.js"]