diff --git a/Dockerfile b/Dockerfile index f98d5d6942..0c038d800f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,6 @@ RUN echo $timezone > /etc/timezone \ && ln -sfn /usr/share/zoneinfo/$timezone /etc/localtime \ && dpkg-reconfigure -f noninteractive tzdata -RUN apt-get update \ - && apt-get install -y python-protobuf RUN cd /tmp && wget "http://pgoapi.com/pgoencrypt.tar.gz" \ && tar zxvf pgoencrypt.tar.gz \ && cd pgoencrypt/src \ diff --git a/install.sh b/install.sh index 1e7415ed30..f11e58e136 100755 --- a/install.sh +++ b/install.sh @@ -5,7 +5,7 @@ if [ -f /etc/debian_version ] then echo "You are on Debian/Ubuntu" sudo apt-get update -sudo apt-get -y install python python-pip python-dev build-essential git python-protobuf virtualenv +sudo apt-get -y install python python-pip python-dev build-essential git virtualenv elif [ -f /etc/redhat-release ] then echo "You are on CentOS/RedHat" diff --git a/setup.sh b/setup.sh index 5fce474b21..9ce511e87f 100755 --- a/setup.sh +++ b/setup.sh @@ -55,7 +55,7 @@ if [ -f /etc/debian_version ] then echo "You are on Debian/Ubuntu" sudo apt-get update -sudo apt-get -y install python python-pip python-dev build-essential git python-protobuf virtualenv +sudo apt-get -y install python python-pip python-dev build-essential git virtualenv elif [ -f /etc/redhat-release ] then echo "You are on CentOS/RedHat"