updates pip to latest version in sdk docker image

This commit is contained in:
Christian Klopp 2018-06-12 14:27:44 +02:00
parent 54593be26c
commit c0cd609d73
2 changed files with 7 additions and 1 deletions

@ -10,6 +10,9 @@ ENV MOD_NAME=sdk
# Set the file maintainer
MAINTAINER rst/tgu
# update pip to latest version
RUN pip install --upgrade pip
# install openmtc dependencies
COPY tmp/$MOD_NAME-dependencies.txt /tmp/requirements.txt
RUN pip install --upgrade --requirement /tmp/requirements.txt

@ -1,4 +1,4 @@
############################################################
docker/sdk-amd64############################################################
# Dockerfile for openmtc sdk binary environment
############################################################
@ -10,6 +10,9 @@ ENV MOD_NAME=sdk
# Set the file maintainer
MAINTAINER rst/tgu
# update pip to latest version
RUN pip install --upgrade pip
# install openmtc dependencies
COPY tmp/$MOD_NAME-dependencies.txt /tmp/requirements.txt
RUN pip install --upgrade --requirement /tmp/requirements.txt