Files
prettier_action/Dockerfile
2020-01-10 10:21:42 +01:00

6 lines
121 B
Docker

FROM node:latest
COPY entrypoint.sh ./entrypoint.sh
COPY package*.json ./
RUN npm install
ENTRYPOINT ["./entrypoint.sh"]