2022-02-01 18:40:35 +01:00
|
|
|
FROM ubuntu:20.04
|
2015-10-05 23:31:05 -05:00
|
|
|
MAINTAINER Joel Martin <github@martintribe.org>
|
|
|
|
|
|
|
|
|
|
##########################################################
|
|
|
|
|
# General requirements for testing or common across many
|
|
|
|
|
# implementations
|
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
|
|
RUN apt-get -y update
|
|
|
|
|
|
|
|
|
|
# Required for running tests
|
2022-02-01 18:40:35 +01:00
|
|
|
RUN apt-get -y install make python3
|
|
|
|
|
RUN ln -fs /usr/bin/python3 /usr/local/bin/python
|
2015-10-05 23:31:05 -05:00
|
|
|
|
|
|
|
|
RUN mkdir -p /mal
|
|
|
|
|
WORKDIR /mal
|
|
|
|
|
|
|
|
|
|
##########################################################
|
|
|
|
|
# Specific implementation requirements
|
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
|
|
# Java and maven
|
2021-08-26 17:07:19 +02:00
|
|
|
RUN apt-get -y install default-jdk-headless maven
|
2022-02-01 18:40:35 +01:00
|
|
|
ENV MAVEN_OPTS -Duser.home=/mal
|