source: josm/trunk/Dockerfile@ 14301

Last change on this file since 14301 was 12774, checked in by Don-vip, 7 years ago

see #15226 - see #2089 - use "noJavaFx" flag in Dockerfile

File size: 275 bytes
Line 
1FROM openjdk:8-jdk-alpine
2
3RUN 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
10COPY . /josm
11
12RUN mkdir -p /josm/test/report
13
14CMD cd /josm && \
15 ant test-html -DnoJavaFX=true
Note: See TracBrowser for help on using the repository browser.