File tree Expand file tree Collapse file tree 14 files changed +14
-0
lines changed Expand file tree Collapse file tree 14 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ LABEL name="APIFuzzer"
7
7
8
8
RUN apt-get update \
9
9
&& apt-get install -y git libcurl4-openssl-dev libssl-dev build-essential \
10
+ && git config --global --add safe.directory /app \
10
11
&& git clone $repository /app \
11
12
&& cd /app \
12
13
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ RUN apt-get update \
9
9
&& groupadd test \
10
10
&& useradd --gid test --create-home --home-dir /home/test test \
11
11
&& apt-get install -y git \
12
+ && git config --global --add safe.directory /app \
12
13
&& git clone $repository /app \
13
14
&& chown test -R /app \
14
15
&& cd /app \
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ LABEL name="fuzz-lightyear"
7
7
8
8
RUN apt-get update \
9
9
&& apt-get install -y git \
10
+ && git config --global --add safe.directory /app \
10
11
&& git clone $repository /app \
11
12
&& cd /app \
12
13
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ LABEL name="Fuzzy-swagger"
7
7
8
8
RUN apt-get update \
9
9
&& apt-get install -y git \
10
+ && git config --global --add safe.directory /app \
10
11
&& git clone $repository /app \
11
12
&& cd /app \
12
13
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ ARG repository=https://github.com/microsoft/restler-fuzzer.git
4
4
ARG revision=a0ba706a2156e31cf6053b639b57aa1b9acad442
5
5
6
6
RUN apk add --no-cache git python3 \
7
+ && git config --global --add safe.directory /app \
7
8
&& git clone $repository /app \
8
9
&& cd /app \
9
10
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ LABEL name="swagger-conformance"
7
7
8
8
RUN apt-get update \
9
9
&& apt-get install -y git \
10
+ && git config --global --add safe.directory /app \
10
11
&& git clone $repository /app \
11
12
&& cd /app \
12
13
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ LABEL name="Swagger-Fuzzer"
7
7
8
8
RUN apt-get update \
9
9
&& apt-get install -y git \
10
+ && git config --global --add safe.directory /app \
10
11
&& git clone $repository /app \
11
12
&& cd /app \
12
13
&& git checkout $revision \
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ ARG revision=c1b333ced51d515e45827d7817a8004cadb98d45
6
6
LABEL name="TnT-Fuzzer"
7
7
8
8
RUN apk add --no-cache git \
9
+ && git config --global --add safe.directory /app \
9
10
# The latest PyPI release is outdated - Python 2 only
10
11
# Therefore building it manually, similarly to their Dockerfile
11
12
# https://github.com/Teebytes/TnT-Fuzzer/blob/master/Dockerfile
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ RUN apt-get update \
9
9
&& groupadd test \
10
10
&& useradd --gid test --create-home --home-dir /home/test test \
11
11
&& apt-get install -y git \
12
+ && git config --global --add safe.directory /app-tmp \
12
13
&& git clone $repository /app-tmp \
13
14
&& chown test -R /app-tmp \
14
15
&& cd /app-tmp \
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ RUN apt-get update \
12
12
&& useradd --gid test --create-home --home-dir /home/test test \
13
13
&& apt-get install -y git python3-pip \
14
14
&& pip3 install --no-cache-dir -r /frozen-requirements.txt \
15
+ && git config --global --add safe.directory /app \
15
16
&& git clone $repository /app \
16
17
&& cd /app \
17
18
&& git checkout $revision \
You can’t perform that action at this time.
0 commit comments