2019-02-26 14:24:37 -08:00
|
|
|
# The stress_test Docker image build a self-contained Ray instance for launching Ray.
|
|
|
|
|
|
|
|
FROM ray-project/base-deps
|
|
|
|
|
|
|
|
# We install ray and boto3 to enable the ray autoscaler as
|
|
|
|
# a test runner.
|
2019-06-24 21:50:37 -07:00
|
|
|
RUN pip install -U https://ray-wheels.s3-us-west-2.amazonaws.com/latest/ray-0.8.0.dev1-cp36-cp36m-manylinux1_x86_64.whl boto3
|
2019-02-26 14:24:37 -08:00
|
|
|
RUN mkdir -p /root/.ssh/
|
|
|
|
|
|
|
|
# We port the source code in so that we run the most up-to-date stress tests.
|
|
|
|
ADD ray.tar /ray
|
|
|
|
ADD git-rev /ray/git-rev
|
|
|
|
WORKDIR /ray
|