94366fd00e
This patch contains only a new Dockerfile and few changes to be able to build both py2 and py3 images. Next patch should contain changes to add the gate jobs to build a py3 docker image Change-Id: Ifdebde9597a787abcd553756e22261e2faaeedfc
28 lines
441 B
Bash
Executable File
28 lines
441 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
|
|
apk add --update \
|
|
linux-headers \
|
|
liberasurecode@testing \
|
|
liberasurecode-dev@testing \
|
|
gnupg \
|
|
git \
|
|
curl \
|
|
rsync \
|
|
memcached \
|
|
openssl \
|
|
openssl-dev \
|
|
sqlite \
|
|
sqlite-libs \
|
|
sqlite-dev \
|
|
xfsprogs \
|
|
zlib-dev \
|
|
g++ \
|
|
libffi \
|
|
libffi-dev \
|
|
libxslt \
|
|
libxslt-dev \
|
|
libxml2 \
|
|
libxml2-dev \
|