Fix build: install libjemalloc1 when build docker images (#128)

* Fix build: install libjemalloc1 when build docker images

* (comment)
This commit is contained in:
Qi Luo 2016-12-15 16:48:22 -08:00 committed by GitHub
parent 82e6b1d7d4
commit 8886fc8286
3 changed files with 9 additions and 1 deletions

@ -1 +1 @@
Subproject commit 73b5fcee2840adcc64bee5e6ffb226a9928959e4 Subproject commit 1ae8aaa535f8e2fd1ffa9d150abe5855d9ac2c70

View File

@ -4,6 +4,10 @@ RUN apt-get update
COPY deps/ deps COPY deps/ deps
## Install redis-tools dependencies
## TODO: implicitly install dependencies
RUN apt-get -y install libjemalloc1
SED_DPKG SED_DPKG
## Clean up ## Clean up

View File

@ -4,6 +4,10 @@ RUN apt-get update
RUN apt-get install -f -y ifupdown bridge-utils libdbus-1-3 libdaemon0 libjansson4 RUN apt-get install -f -y ifupdown bridge-utils libdbus-1-3 libdaemon0 libjansson4
## Install redis-tools dependencies
## TODO: implicitly install dependencies
RUN apt-get -y install libjemalloc1
COPY deps /deps COPY deps /deps
SED_DPKG SED_DPKG