Last change
on this file since 11442 was
11442,
checked in by wiktorn, 5 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 | |
---|
1 | FROM openjdk:8-jdk-alpine |
---|
2 | |
---|
3 | RUN apk update && \ |
---|
4 | apk add apache-ant && \ |
---|
5 | apk add ttf-dejavu && \ |
---|
6 | rm /var/cache/apk/* |
---|
7 | |
---|
8 | COPY . /josm |
---|
9 | |
---|
10 | RUN mkdir -p /josm/test/report |
---|
11 | |
---|
12 | CMD cd /josm && \ |
---|
13 | ant test-html |
---|
Note: See
TracBrowser
for help on using the repository browser.