1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/tcl/Dockerfile

25 lines
648 B
Docker
Raw Permalink Normal View History

FROM ubuntu:20.04
2015-07-09 18:14:16 +03: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
RUN apt-get -y install make python3
RUN ln -fs /usr/bin/python3 /usr/local/bin/python
2015-07-09 18:14:16 +03:00
RUN mkdir -p /mal
WORKDIR /mal
##########################################################
# Specific implementation requirements
##########################################################
RUN apt-get -y install tcl tcl-tclreadline
2015-11-10 07:53:30 +03:00
ENV HOME /mal