diff options
Diffstat (limited to 'lcm/docker/Dockerfile')
-rwxr-xr-x | lcm/docker/Dockerfile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lcm/docker/Dockerfile b/lcm/docker/Dockerfile index 3696eb85..e552304e 100755 --- a/lcm/docker/Dockerfile +++ b/lcm/docker/Dockerfile @@ -9,12 +9,22 @@ ENV https_proxy $HTTPS_PROXY ENV MYSQL_ROOT_PASSWORD $MYSQL_ROOT_PASSWORD RUN apt-get update && \ + apt-get install -y python-devel && \ + apt-get install -y python-virtualenv && \ + apt-get install -y python-setuptools && \ apt-get install -y python-dev && \ apt-get install -y python-pip && \ + apt-get install -y openssl-devel && \ + apt-get install -y mysql-devel && \ + apt-get install -y gcc && \ + apt-get install -y libffi-devel && \ + apt-get install -y redis && \ apt-get install -y libmysqlclient-dev && \ apt-get install -y redis-server && \ apt-get install -y mysql-server && \ - apt-get install -y mysql-client + apt-get install -y mysql-client && \ + apt-get install -y wget && \ + apt-get install -y unzip ADD . /service RUN cd /service |