-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
51 lines (40 loc) · 2.16 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
ARG ETHEREUM_VERSION=alltools-v1.7.3
ARG SOLC_VERSION=0.4.19
FROM ethereum/client-go:${ETHEREUM_VERSION} as geth
FROM ethereum/solc:${SOLC_VERSION} as solc
FROM ubuntu:bionic
LABEL maintainer "Luong Nguyen <[email protected]>"
SHELL ["/bin/bash", "-c", "-l"]
RUN apt-get update && apt-get -y upgrade
RUN apt-get install -y wget unzip python-virtualenv git build-essential software-properties-common curl
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update
RUN apt-get install -y musl-dev golang-go python3 python3-pip python-pip \
bison zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev \
zlib1g-dev libreadline-dev npm libyaml-dev libsqlite3-dev sqlite3 \
libxml2-dev libxslt1-dev libcurl4-openssl-dev libffi-dev nodejs yarn && \
apt-get clean
RUN update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2
RUN update-alternatives --install /usr/bin/pip pip /usr/bin/pip2 1
RUN update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 2
RUN pip install requests web3
RUN npm install npm@latest -g && npm install n --global && n stable
RUN mkdir -p /deps/z3/ && wget https://github.com/Z3Prover/z3/archive/z3-4.5.0.zip -O /deps/z3/z3.zip && \
cd /deps/z3/ && unzip /deps/z3/z3.zip && \
ls /deps/z3 && mv /deps/z3/z3-z3-4.5.0/* /deps/z3/ && rm /deps/z3/z3.zip && \
python scripts/mk_make.py --python && cd build && make && make install
# Instsall geth from official geth image
COPY --from=geth /usr/local/bin/evm /usr/local/bin/evm
# Install solc from official solc image
COPY --from=solc /usr/bin/solc /usr/bin/solc
COPY . /oyente/
RUN wget -O ruby-install-0.6.1.tar.gz https://github.com/postmodern/ruby-install/archive/v0.6.1.tar.gz
RUN tar -xzvf ruby-install-0.6.1.tar.gz
RUN cd ruby-install-0.6.1/ && make install
RUN ruby-install --system ruby 2.4.4
WORKDIR /oyente/web
RUN ./bin/yarn install && gem install bundler && bundle install --with development
EXPOSE 3000
CMD ["./bin/rails", "server"]