Merge pull request #61 from API-market/feature/docker

Dockerfile
pull/72/head
Bernhard Mueller 7 years ago committed by GitHub
commit d723ae09cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      Dockerfile

@ -0,0 +1,19 @@
FROM ubuntu:rolling
COPY . .
RUN apt-get update \
&& apt-get install -y software-properties-common python-software-properties \
&& add-apt-repository ppa:ethereum/ethereum \
&& apt-get update \
&& apt-get install -y solc \
&& apt-get install -y libssl-dev \
&& apt-get install -y python3-pip python3-dev \
&& ln -s /usr/bin/python3 /usr/local/bin/python \
&& pip3 install --upgrade pip \
&& apt-get install -y pandoc \
&& apt-get install -y git \
&& pip3 install laser-ethereum \
&& python setup.py install
CMD []
Loading…
Cancel
Save