1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/impls/sml/Dockerfile

28 lines
749 B
Docker
Raw Permalink Normal View History

# We need focal for the Moscow ML PPA
FROM ubuntu:focal
2021-04-07 15:29:39 +03:00
##########################################################
# General requirements for testing or common across many
# implementations
##########################################################
RUN apt-get -y update
RUN apt-get -y install make python3
RUN ln -s /usr/bin/python3 /usr/local/bin/python
2021-04-07 15:29:39 +03:00
RUN mkdir -p /mal
WORKDIR /mal
##########################################################
# Specific implementation requirements
##########################################################
RUN apt-get -y install software-properties-common
2021-04-07 15:29:39 +03:00
RUN apt-get -y install polyml libpolyml-dev
RUN apt-get -y install mlton
RUN add-apt-repository -y ppa:kflarsen/mosml
RUN apt-get -y install mosml