source: josm/trunk/Dockerfile@ 12756

Last change on this file since 12756 was 11442, checked in by wiktorn, 7 years ago

Dockerfile and scripts to start tests under Docker for Windows and Linux. This makes easier to run tests on Windows-based development environment

File size: 210 bytes
Line 
1FROM openjdk:8-jdk-alpine
2
3RUN apk update && \
4 apk add apache-ant && \
5 apk add ttf-dejavu && \
6 rm /var/cache/apk/*
7
8COPY . /josm
9
10RUN mkdir -p /josm/test/report
11
12CMD cd /josm && \
13 ant test-html
Note: See TracBrowser for help on using the repository browser.