Files
coverage-comment-action/Dockerfile
Joachim Jablon 626fbd3669 Action
2021-07-23 23:54:44 +02:00

15 lines
268 B
Docker

FROM python:3-slim
WORKDIR /tool
RUN set -eux; \
apt-get update; \
apt-get install -y git; \
rm -rf /var/lib/apt/lists/*; \
pip install ghapi diff-cover
COPY entrypoint.py /entrypoint.py
COPY add-to-wiki.sh /add-to-wiki.sh
CMD [ "/entrypoint.py" ]