Dockerfile 280 字节
Newer Older
X
Xi Chen 已提交
1 2 3 4 5 6 7 8 9 10
# A image for building paddle binaries
# Use cuda devel base image for both cpu and gpu environment
FROM python:2.7.14-stretch

ENV HOME /root
# Add bash enhancements
COPY ./ /root/
WORKDIR /root
RUN pip install -r /root/requirements.txt
ENTRYPOINT ["python", "cluster_master.py"]