File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
FROM maven:3.6.1-jdk-11 AS build-image
2
2
WORKDIR /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
3
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
4
18
5
19
WORKDIR /build/TLS-Scanner
6
20
RUN mvn clean install -DskipTests=true
7
21
8
22
# ############
9
- FROM openjdk:8-alpine
23
+ FROM openjdk:11
10
24
11
25
COPY --from=build-image /build/TLS-Scanner/apps /apps
12
26
You can’t perform that action at this time.
0 commit comments