Merge pull request #381 from ethcore/docker

add gcc as a dependency to dockerfiles
This commit is contained in:
Gav Wood 2016-02-09 09:53:15 +01:00
commit 1b89654d0c
3 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@ RUN apt-get update && \
# add-apt-repository # add-apt-repository
software-properties-common \ software-properties-common \
curl \ curl \
gcc \
wget \ wget \
git \ git \
# evmjit dependencies # evmjit dependencies

View File

@ -10,6 +10,7 @@ RUN apt-get update && \
curl \ curl \
wget \ wget \
git \ git \
gcc \
# evmjit dependencies # evmjit dependencies
zlib1g-dev \ zlib1g-dev \
libedit-dev libedit-dev

View File

@ -3,6 +3,7 @@ FROM ubuntu:14.04
# install tools and dependencies # install tools and dependencies
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y \ apt-get install -y \
gcc \
curl \ curl \
git \ git \
# add-apt-repository # add-apt-repository