Differential D7384 Diff 35198 python_modules/automation/automation/docker/images/buildkite-integration-base/Dockerfile
Changeset View
Changeset View
Standalone View
Standalone View
python_modules/automation/automation/docker/images/buildkite-integration-base/Dockerfile
Show First 20 Lines • Show All 129 Lines • ▼ Show 20 Lines | |||||
# Install Python deps | # Install Python deps | ||||
ADD trigger_maven.py . | ADD trigger_maven.py . | ||||
RUN pip install -U pip setuptools wheel \ | RUN pip install -U pip setuptools wheel \ | ||||
&& pip install \ | && pip install \ | ||||
awscli \ | awscli \ | ||||
pipenv \ | pipenv \ | ||||
&& pip --no-cache-dir install pyspark==$PYSPARK_VERSION \ | && pip --no-cache-dir install pyspark==$PYSPARK_VERSION \ | ||||
# This instigates some package downloads required by the airline-demo | # This instigates some package downloads required for spark | ||||
&& python trigger_maven.py \ | && python trigger_maven.py \ | ||||
&& rm trigger_maven.py | && rm trigger_maven.py | ||||
RUN wget http://download.redis.io/redis-stable.tar.gz \ | RUN wget http://download.redis.io/redis-stable.tar.gz \ | ||||
&& tar xvzf redis-stable.tar.gz \ | && tar xvzf redis-stable.tar.gz \ | ||||
&& cd redis-stable \ | && cd redis-stable \ | ||||
&& make install | && make install |