This commit is contained in:
Joachim Jablon
2021-07-23 23:53:16 +02:00
parent 2cedb8b908
commit 626fbd3669
3 changed files with 111 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
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" ]