drone-opencov/Dockerfile

11 lines
237 B
Docker
Raw Normal View History

2018-12-09 17:03:07 +01:00
FROM node:lts-alpine
LABEL maintainer="lizheming <i@imnerd.org>"
RUN apk upgrade --no-cache && apk add --no-cache bash
2021-06-13 11:43:38 +02:00
RUN npm install -g coveralls
2018-12-09 17:03:07 +01:00
2021-06-13 11:43:38 +02:00
ADD ./entrypoint.sh /bin
RUN chmod +x /bin/entrypoint.sh
2018-12-09 17:03:07 +01:00
2021-06-13 11:43:38 +02:00
ENTRYPOINT ["entrypoint.sh"]