source: josm/trunk/native/Dockerfile

Last change on this file was 17976, checked in by Don-vip, 3 years ago

move packaging/distribution files to native folder

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.