37e257913c
Added Dockerfile and configuration files under the new `docker` directory to build a Swift All in One container image. The primary goal of this container image is to provide application developers with a Swift/S3 endpoint that can be tested against during the development cycle. Added Zuul jobs to build docker container Change-Id: Ib10975a1862a4fa8c4eeaba139837cf1f22b272a
32 lines
1.0 KiB
Bash
Executable File
32 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "+ + + + + + + + + + upgrading pip" && \
|
|
pip install -U pip && \
|
|
cd /opt/swift && \
|
|
pip install -r requirements.txt
|
|
|
|
#echo "+ + + + + + + + + + installing pastedeploy" && \
|
|
#pip install pastedeploy && \
|
|
#echo "+ + + + + + + + + + installing eventlet" && \
|
|
#pip install eventlet && \
|
|
#echo "+ + + + + + + + + + installing greenlet" && \
|
|
#pip install greenlet && \
|
|
#echo "+ + + + + + + + + + installing netifaces" && \
|
|
#pip install netifaces && \
|
|
#echo "+ + + + + + + + + + installing setuptools" && \
|
|
#pip install setuptools && \
|
|
#echo "+ + + + + + + + + + installing requests" && \
|
|
#pip install requests && \
|
|
#echo "+ + + + + + + + + + installing six" && \
|
|
#pip install six && \
|
|
#echo "+ + + + + + + + + + installing cryptography" && \
|
|
#pip install cryptography && \
|
|
#echo "+ + + + + + + + + + installing dnspython" && \
|
|
#pip install dnspython
|
|
#echo "+ + + + + + + + + + installing xattr" && \
|
|
#pip install xattr
|
|
#echo "+ + + + + + + + + + installing pyeclib" && \
|
|
#pip install pyeclib
|
|
#echo "+ + + + + + + + + + installing lxml" && \
|
|
#pip install lxml
|