Skip to content

Commit 037e123

Browse files
committed
Upgrade registry and boto versions
1 parent 5aa9203 commit 037e123

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

rootfs/Dockerfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
FROM registry:2.6.0
1+
FROM registry:2.7.1
22

33
RUN apk add --no-cache \
4-
python3 && \
4+
python3 && \
55
python3 -m ensurepip && \
66
ln -sf /usr/bin/python3 /usr/bin/python && \
77
ln -sf /usr/bin/pip3 /usr/bin/pip
88

99
RUN buildDeps='gcc git linux-headers musl-dev python3-dev' && \
1010
apk add --no-cache $buildDeps && \
11-
# "upgrade" boto to 2.43.0 + the patch to fix minio connections
11+
# "upgrade" boto to 2.49.0: to support the latest AWS regions
1212
pip install --disable-pip-version-check --no-cache-dir --upgrade \
13-
git+https://github.com/teamhephy/boto@abb38474ee5124bb571da0c42be67cd27c47094f \
14-
azure==1.0.3 \
15-
gcloud==0.18.3 \
16-
python-swiftclient==3.1.0 \
17-
python-keystoneclient==3.1.0 && \
13+
boto==2.49.0 \
14+
azure==1.0.3 \
15+
gcloud==0.18.3 \
16+
python-swiftclient==3.8.1 \
17+
python-keystoneclient==3.1.0 && \
1818
# purge dev dependencies
1919
apk del $buildDeps
2020

0 commit comments

Comments
 (0)