1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/.github/actions/require-milestone/Dockerfile
Sebastian Malton 0a792443af Add action to require milestones on PRs
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2021-12-10 09:30:11 -05:00

12 lines
299 B
Docker

# Container image that runs your code
FROM node:14-alpine
COPY package*.json /home/action/
COPY entrypoint.js /home/action/entrypoint.js
WORKDIR /home/action
RUN npm ci
# Code file to execute when the docker container starts up (`entrypoint.js`)
ENTRYPOINT ["node", "/home/action/entrypoint.js"]