comparison Dockerfile @ 6:e49b52c098c7

mounted the current directory
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 17 Sep 2019 08:48:23 +0900
parents 6ad6aeabe992
children
comparison
equal deleted inserted replaced
5:6ad6aeabe992 6:e49b52c098c7
9 RUN wget https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar 9 RUN wget https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
10 RUN wget https://search.maven.org/remotecontent?filepath=junit/junit/4.13-beta-3/junit-4.13-beta-3.jar 10 RUN wget https://search.maven.org/remotecontent?filepath=junit/junit/4.13-beta-3/junit-4.13-beta-3.jar
11 RUN git clone https://github.com/javapathfinder/jpf-core.git --single-branch java-8 11 RUN git clone https://github.com/javapathfinder/jpf-core.git --single-branch java-8
12 12
13 RUN wget https://services.gradle.org/distributions/gradle-5.6.2-bin.zip && unzip -d bin/gradle gradle-5.6.2-bin.zip 13 RUN wget https://services.gradle.org/distributions/gradle-5.6.2-bin.zip && unzip -d bin/gradle gradle-5.6.2-bin.zip
14 RUN cd /java-8 && ../bin/gradle/gradle-5.6.2/bin/gradle buildJars && cd / 14 RUN cd /java-8 && ../bin/gradle/gradle-5.6.2/bin/gradle buildJars
15
16 COPY ./ThreadTest ./ThreadTest
17 RUN cd ThreadTest && ../bin/gradle/gradle-5.6.2/bin/gradle build
18 15
19 COPY ./entrypoint.sh ./entrypoint.sh 16 COPY ./entrypoint.sh ./entrypoint.sh
20 ENTRYPOINT ["sh","entrypoint.sh"] 17 ENTRYPOINT ["sh","entrypoint.sh"]