FROM ubuntu:20.04

RUN apt-get update && apt-get install -y software-properties-common gcc

RUN apt-get update && apt-get install -y python3.8 python3-distutils python3-pip python3-venv

RUN apt-get update && apt-get install -y wget unzip 

RUN wget https://gitlab.com/escape-projects/moho-framework/-/archive/master/moho-framework-master.zip

RUN unzip moho-framework-master.zip

WORKDIR ./moho-framework-master

RUN pip3 install --trusted-host pypi.python.org -e .

CMD cd examples/showcase && python3 app.py
