Make UI render
[GitLab/stricted-build/lineage_builder.git] / Dockerfile
CommitLineData
31329c3f
TP
1FROM python:3.6
2
3COPY . /app
4WORKDIR /app
5RUN pip install gunicorn
6RUN pip install .
7
8CMD gunicorn -b 0.0.0.0:8080 ui.app:app