add footer, include version
[GitLab/stricted-build/lineage_builder.git] / Dockerfile
CommitLineData
31329c3f
TP
1FROM python:3.6
2
de2bd7f5
TP
3ARG VERSION=dev
4
5ENV VERSION=$VERSION
6
31329c3f
TP
7COPY . /app
8WORKDIR /app
9RUN pip install gunicorn
10RUN pip install .
11
12CMD gunicorn -b 0.0.0.0:8080 ui.app:app