File tree Expand file tree Collapse file tree 1 file changed +4
-18
lines changed Expand file tree Collapse file tree 1 file changed +4
-18
lines changed Original file line number Diff line number Diff line change 1- FROM maven:3.6.1 -jdk-11 AS build-image
1+ FROM maven:3.8.6 -jdk-11 AS build-image
22WORKDIR /build
3- RUN git clone https://github.com/RUB-NDS/ModifiableVariable.git
4- RUN git clone https://github.com/RUB-NDS/ASN.1-Tool.git
5- RUN git clone https://github.com/RUB-NDS/X509-Attacker.git
6- RUN git clone https://github.com/RUB-NDS/TLS-Attacker.git
7- RUN git clone https://github.com/RUB-NDS/TLS-Scanner.git --recurse-submodules
8- WORKDIR /build/ModifiableVariable
9- RUN git checkout tags/3.5.0
10- RUN mvn clean install -DskipTests=true
11- WORKDIR /build/ASN.1-Tool
12- RUN mvn clean install -DskipTests=true
13- WORKDIR /build/X509-Attacker
14- RUN mvn clean install -DskipTests=true
15-
16- WORKDIR /build/TLS-Attacker
17- RUN mvn clean install -DskipTests=true
3+ RUN git clone https://github.com/RUB-NDS/TLS-Scanner.git
184
195WORKDIR /build/TLS-Scanner
20- RUN mvn clean install -DskipTests=true
6+ RUN git submodule update --init --recursive
7+ RUN mvn clean package
218
229# ############
2310FROM openjdk:11
@@ -26,4 +13,3 @@ COPY --from=build-image /build/TLS-Scanner/apps /apps
2613
2714WORKDIR /apps
2815ENTRYPOINT ["java" , "-jar" , "TLS-Server-Scanner.jar" ]
29-
You can’t perform that action at this time.
0 commit comments