2021-08-26 18:07:19 +03:00
|
|
|
FROM ubuntu:20.04
|
|
|
|
MAINTAINER Joel Martin <github@martintribe.org>
|
2015-10-06 09:49:15 +03:00
|
|
|
|
2021-08-26 18:07:19 +03:00
|
|
|
##########################################################
|
|
|
|
# General requirements for testing or common across many
|
|
|
|
# implementations
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
RUN apt-get -y update
|
2018-07-15 03:27:11 +03:00
|
|
|
|
2021-08-26 18:07:19 +03:00
|
|
|
# Required for running tests
|
2022-02-01 20:40:35 +03:00
|
|
|
RUN apt-get -y install make python3
|
|
|
|
RUN ln -fs /usr/bin/python3 /usr/local/bin/python
|
2021-08-26 18:07:19 +03:00
|
|
|
|
|
|
|
RUN mkdir -p /mal
|
2018-07-15 03:27:11 +03:00
|
|
|
WORKDIR /mal
|
2021-08-26 18:07:19 +03:00
|
|
|
|
|
|
|
##########################################################
|
|
|
|
# Specific implementation requirements
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
RUN apt-get -y install cargo
|
|
|
|
|
|
|
|
ENV CARGO_HOME /mal
|