added build-essential dep to dockerfiles (#3666)

This commit is contained in:
Konstantin 2016-11-29 12:23:53 +00:00 committed by Arkadiy Paronyan
parent c97c59f62f
commit a578e10c49
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ WORKDIR /build
# install tools and dependencies
RUN apt-get update && \
apt-get install -y \
build-essential \
g++ \
curl \
git \

View File

@ -4,6 +4,7 @@ WORKDIR /build
RUN apt-get update && \
apt-get install -y \
g++ \
build-essential \
curl \
git \
file \