source:
josm/trunk/Dockerfile@
15939
Last change on this file since 15939 was 12774, checked in by , 7 years ago | |
---|---|
File size: 275 bytes |
Line | |
---|---|
1 | FROM openjdk:8-jdk-alpine |
2 | |
3 | RUN apk update && \ |
4 | apk add apache-ant && \ |
5 | apk add ttf-dejavu && \ |
6 | apk add subversion && \ |
7 | apk add git && \ |
8 | rm /var/cache/apk/* |
9 | |
10 | COPY . /josm |
11 | |
12 | RUN mkdir -p /josm/test/report |
13 | |
14 | CMD cd /josm && \ |
15 | ant test-html -DnoJavaFX=true |
Note:
See TracBrowser
for help on using the repository browser.