mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-03-26 02:01:27 +01:00
Merge c891985de3
into b8375442a7
This commit is contained in:
commit
28ed8f14e5
1 changed files with 18 additions and 0 deletions
18
Dockerfile
Normal file
18
Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Simple dockerfile for gitinspector
|
||||
# Usage:
|
||||
# To build the image, execute the following command in the repository of gitinspector.
|
||||
# docker build -t gitinspector .
|
||||
#
|
||||
# Run the following commands in the repository you want to analyze:
|
||||
# docker run --rm -it -v $(pwd):/repo gitinspector -f cs,fs -m -r -T -w /repo -F json > myresults.json
|
||||
# docker run --rm -it gitinspector --help
|
||||
|
||||
|
||||
FROM python:3.7-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
RUN apk update && apk add git
|
||||
|
||||
ENTRYPOINT ["python3", "/app/gitinspector.py"]
|
Loading…
Add table
Reference in a new issue