Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kolla-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN mkdir -p .venv && \
virtualenv .venv/kolla-builds && \
. .venv/kolla-builds/bin/activate && \
cd ./kolla-$KOLLA_VERSION && \
pip install -e . && \
pip install --no-cache-dir -e . && \
mkdir -p /etc/kolla

RUN mkdir -p /root/.kolla-$KOLLA_VERSION/src/$KOLLA_PROJECT && \
Expand Down
2 changes: 1 addition & 1 deletion maas/maas-region-controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RUN apt-get download maas-region-controller && \
pg_dropcluster --stop 9.5 main

# potentially used to calculate cidrs
RUN pip3 install netaddr
RUN pip3 install --no-cache-dir netaddr

# initalize systemd
CMD ["/sbin/init"]
4 changes: 2 additions & 2 deletions simple-shaker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ RUN apt update && install_packages python-dev wget gcc nano less \
RUN wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py

RUN pip install -U pbr setuptools
RUN pip install pyshaker openstackclient flent==1.2.2
RUN pip install --no-cache-dir -U pbr setuptools
RUN pip install --no-cache-dir pyshaker openstackclient flent==1.2.2

RUN wget http://ftp.br.debian.org/debian/pool/non-free/n/netperf/netperf_2.6.0-2_amd64.deb && \
dpkg -i netperf_2.6.0-2_amd64.deb && apt install -f
Expand Down