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 UC2_mobile_contribution/broadcaster/service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask>=1.0.0 requests==2.13.0 kafka-python==1.4.2 pyopenssl

RUN openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj "/C=EU/ST=5gmedia 5gmedia/L=5gmedia /O=5gmedia/OU=5gmedia/CN=5gmedia/emailAddress=5gmedia" -keyout /server.key -out /server.crt
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/proxier-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM docker5gmedia/ow-offload-serverprereqs:0.1

RUN pip install \
RUN pip install --no-cache-dir \
kubernetes==10.0.1

RUN mkdir -p /proxyServer
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/service/Dockerfile.prereq
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk add --no-cache bash \
bzip2-dev \
gcc \
libc-dev \
&& pip install --upgrade pip setuptools \
&& pip install --no-cache-dir --upgrade pip setuptools \
&& pip install --no-cache-dir gevent==1.2.1 flask==0.12 \
&& apk del .build-deps

Expand All @@ -22,7 +22,7 @@ RUN apk add --no-cache \
openssl-dev

# Install common modules for python
RUN pip install \
RUN pip install --no-cache-dir \
beautifulsoup4==4.5.3 \
httplib2==0.10.3 \
kafka_python==1.3.2 \
Expand Down
2 changes: 1 addition & 1 deletion openwhisk/docker/Dockerfile.base
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask==0.12 requests==2.13.0

# Do not modify - this is the internal openwhisk invoker service port
Expand Down
2 changes: 1 addition & 1 deletion openwhisk/docker/Dockerfile.base.18.04
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask==0.12 requests==2.13.0

# Do not modify - this is the internal openwhisk invoker service port
Expand Down
2 changes: 1 addition & 1 deletion openwhisk/docker/Dockerfile.base.gpu
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask==0.12 requests==2.13.0

# Do not modify - this is the internal openwhisk invoker service port
Expand Down
2 changes: 1 addition & 1 deletion openwhisk/docker/Dockerfile.base.gpu.ds061-cc61
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask==0.12 requests==2.13.0

# Do not modify - this is the internal openwhisk invoker service port
Expand Down
2 changes: 1 addition & 1 deletion vim-plugin/configuration_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y bash \
libc-dev \
python-pip

RUN pip install --upgrade pip setuptools six
RUN pip install --no-cache-dir --upgrade pip setuptools six
RUN pip install --no-cache-dir gevent==1.2.1 flask==0.12 requests==2.13.0

ADD faas_configuration_service.py /
Expand Down