File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,13 +42,6 @@ RUN adduser --disabled-password --home /home/sherlock --gecos '' sherlock
4242
4343RUN apk add --no-cache --upgrade bash
4444RUN apk add --update openjdk17
45- RUN apk add --no-cache msttcorefonts-installer fontconfig
46- RUN update-ms-fonts
47- RUN apk add --no-cache tesseract-ocr python3 py3-pip py3-numpy && \
48- pip3 install --upgrade pip setuptools wheel && \
49- apk add --no-cache --virtual .build-deps gcc g++ zlib-dev make python3-dev py3-numpy-dev jpeg-dev && \
50- pip3 install matplotlib && \
51- apk del .build-deps
5245
5346# REQUIRED: Change into the home directory
5447WORKDIR /home/sherlock
@@ -62,9 +55,6 @@ WORKDIR /home/sherlock
6255# Copy the setup
6356COPY docs holmes/docs
6457
65- # Copy the plotting scripts
66- COPY plotting holmes/plotting
67-
6858# Copy the docker resources
6959COPY docker/* ./
7060RUN mkdir DiffDetectiveMining
Original file line number Diff line number Diff line change @@ -93,10 +93,6 @@ The aggregated results of the validation can be found in the following files.
9393 #Error[not all annotations closed]: 6
9494 ```
9595
96- - The [ runtime histogram] ( results/runtime_histogram.png ) of each processed commit.
97- ![ ] ( docs/validation/validation_histogram.png )
98-
99-
10096## Troubleshooting
10197
10298### 'Got permission denied while trying to connect to the Docker daemon socket'
Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ if [ "$1" == 'replication' ] || [ "$1" == 'validation' ]; then
2121 cp -r results/* ../results/
2222 java -cp DiffDetectiveRunner.jar mining.FindMedianCommitTime ../results/difftrees
2323 java -cp DiffDetectiveRunner.jar mining.tablegen.MiningResultAccumulator ../results/difftrees ../results/difftrees
24- python3 plotting/plot.py
25- cp ./runtime_histogram.png ../results/ || exit
2624 echo " The results are located in the 'results' directory."
2725else
2826 echo " INVALID ARGUMENT: $1 "
You can’t perform that action at this time.
0 commit comments