You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/tools/aws_benchmarking/server/Dockerfile

10 lines
280 B

# 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"]