forked from deis/deis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·53 lines (40 loc) · 1.75 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bash
# fail on any command exiting non-zero
set -eo pipefail
if [[ -z $DOCKER_BUILD ]]; then
echo
echo "Note: this script is intended for use by the Dockerfile and not as a way to build the registry locally"
echo
exit 1
fi
DEBIAN_FRONTEND=noninteractive
sed -i 's/main$/main universe/' /etc/apt/sources.list
# install required packages (copied from dotcloud/docker-registry Dockerfile)
apt-get update && \
apt-get install -y git-core build-essential python-dev \
libevent-dev libssl-dev libyaml-0-2 libyaml-dev python-openssl liblzma-dev swig
# install pip
curl -sSL https://raw.githubusercontent.com/pypa/pip/6.0.8/contrib/get-pip.py | python -
# create a registry user
useradd -s /bin/bash registry
# add the docker registry source from github
git clone -b new-repository-import-v091 --single-branch https://github.com/deis/docker-registry /docker-registry && \
chown -R registry:registry /docker-registry
# install boto configuration
cp /docker-registry/config/boto.cfg /etc/boto.cfg
cd /docker-registry && pip install -r requirements/main.txt
# Install core
pip install /docker-registry/depends/docker-registry-core
# Install registry
pip install file:///docker-registry#egg=docker-registry[bugsnag,newrelic,cors]
patch \
$(python -c 'import boto; import os; print os.path.dirname(boto.__file__)')/connection.py \
< /docker-registry/contrib/boto_header_patch.diff
# cleanup. indicate that python is a required package.
apt-mark unmarkauto python python-openssl libyaml-0-2 && \
apt-get remove -y --purge git-core build-essential libssl-dev libyaml-dev python-dev swig && \
apt-get autoremove -y --purge && \
apt-get clean -y && \
rm -Rf /usr/share/man /usr/share/doc && \
rm -rf /tmp/* /var/tmp/* && \
rm -rf /var/lib/apt/lists/*