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
31 lines
367 B
Bash
Executable File
31 lines
367 B
Bash
Executable File
#!/bin/sh
|
|
|
|
apk add --update \
|
|
linux-headers \
|
|
gnupg \
|
|
git \
|
|
curl \
|
|
rsync \
|
|
memcached \
|
|
openssl \
|
|
openssl-dev \
|
|
sqlite \
|
|
sqlite-libs \
|
|
sqlite-dev \
|
|
xfsprogs \
|
|
autoconf \
|
|
automake \
|
|
libtool \
|
|
make \
|
|
zlib-dev \
|
|
g++ \
|
|
libffi \
|
|
libffi-dev \
|
|
libxslt \
|
|
libxslt-dev \
|
|
libxml2 \
|
|
libxml2-dev \
|
|
python \
|
|
python-dev \
|
|
py-pip
|