playbook 0.4.2

YAML driven Docker DevOps
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM aleozlx/playbook-tensorflow:latest
MAINTAINER Alex Yang <aleozlx@gmail.com>

COPY requirements.txt /requirements.txt
RUN pip3 --no-cache-dir install -r /requirements.txt

# Bugfix
COPY util.patch /tmp/util.patch
RUN patch /usr/lib/python3.5/importlib/util.py /tmp/util.patch

ENTRYPOINT ["/bin/tkstack-start.sh"]