-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
35 lines (27 loc) · 855 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:wily
MAINTAINER Grzegorz Kapkowski <grzegorz.kapkowski@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get upgrade -q -y && \
apt-get dist-upgrade -q -y && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 923F6CA9 && \
echo "deb http://ppa.launchpad.net/ethereum/ethereum-dev/ubuntu wily main" | tee -a /etc/apt/sources.list.d/ethereum.list && \
apt-get update && \
apt-get install -q -y \
geth \
software-properties-common \
python \
python-dev \
python-pip \
fuse
RUN add-apt-repository ppa:ethereum/ethereum -y
RUN apt-get update && apt-get install -y \
solc
RUN pip install argparse
RUN pip install web3
RUN pip install ipdb
RUN pip install fusepy
EXPOSE 8545
EXPOSE 30303
ADD bin /etherfs/bin
CMD /etherfs/bin/etherfs