https://github.com/CompEvol/sampled-ancestors
Raw File
Tip revision: 3f01d8f045190585e984fab1d26b216c14c2e042 authored by rbouckaert on 19 March 2023, 20:12:40 UTC
release v2.1.1
Tip revision: 3f01d8f
Dockerfile
# Dockerfile to build container for unit testing

FROM openjdk:10

RUN apt-get update && apt-get install -y git ant

WORKDIR /root

ADD . ./

ENTRYPOINT ant test
back to top