2021-08-26 17:07:19 +02:00
|
|
|
FROM ubuntu:20.04
|
2015-10-05 17:23:21 -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 17:23:21 -05:00
|
|
|
|
|
|
|
|
RUN mkdir -p /mal
|
|
|
|
|
WORKDIR /mal
|
|
|
|
|
|
|
|
|
|
##########################################################
|
|
|
|
|
# Specific implementation requirements
|
|
|
|
|
##########################################################
|
|
|
|
|
|
2022-02-01 18:40:35 +01:00
|
|
|
RUN apt-get -y install python2
|
2016-02-24 00:45:40 -06:00
|
|
|
|
|
|
|
|
# For dist packaging
|
|
|
|
|
RUN apt-get -y install zip
|