Action
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user