2021-08-26 17:07:19 +02:00
|
|
|
FROM ubuntu:24.04
|
|
|
|
|
MAINTAINER Joel Martin <github@martintribe.org>
|
2019-05-15 22:20:56 +01:00
|
|
|
|
|
|
|
|
##########################################################
|
|
|
|
|
# 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
|
2019-05-15 22:20:56 +01:00
|
|
|
|
|
|
|
|
RUN mkdir -p /mal
|
|
|
|
|
WORKDIR /mal
|
|
|
|
|
|
|
|
|
|
##########################################################
|
|
|
|
|
# Specific implementation requirements
|
|
|
|
|
##########################################################
|
|
|
|
|
|
2021-08-26 17:07:19 +02:00
|
|
|
RUN apt-get -y install brandy
|