Skip to content

Commit

Permalink
Dockerfile formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Fuechsl committed Jun 19, 2020
1 parent 037e123 commit bfbd794
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rootfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
FROM registry:2.7.1

RUN apk add --no-cache \
python3 && \
python3 && \
python3 -m ensurepip && \
ln -sf /usr/bin/python3 /usr/bin/python && \
ln -sf /usr/bin/pip3 /usr/bin/pip

RUN buildDeps='gcc git linux-headers musl-dev python3-dev' && \
apk add --no-cache $buildDeps && \
# "upgrade" boto to 2.49.0: to support the latest AWS regions
# "upgrade" boto to 2.49.0 to support the latest AWS regions
pip install --disable-pip-version-check --no-cache-dir --upgrade \
boto==2.49.0 \
azure==1.0.3 \
gcloud==0.18.3 \
python-swiftclient==3.8.1 \
python-keystoneclient==3.1.0 && \
boto==2.49.0 \
azure==1.0.3 \
gcloud==0.18.3 \
python-swiftclient==3.8.1 \
python-keystoneclient==3.1.0 && \
# purge dev dependencies
apk del $buildDeps

Expand Down

0 comments on commit bfbd794

Please sign in to comment.