Skip to content
Snippets Groups Projects
Commit 8e447002 authored by Francisco Ruiz's avatar Francisco Ruiz
Browse files

v0.1

parent 759176b8
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:xenial FROM ubuntu:xenial
MAINTAINER Francisco Ruiz BFA MAINTAINER Francisco Ruiz BFA
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND noninteractive ENV BFAHOME=/home/bfa
ENV BFAHOME=/bfa
ENV BFANETWORKDIR="${BFAHOME}/network5445"
ENV BFANETWORKID=5445
ENV PATH=${PATH}:${BFAHOME}/bin ENV PATH=${PATH}:${BFAHOME}/bin
WORKDIR /home/bfa
WORKDIR /bfa RUN apt-get update && \
apt-get -y -qq upgrade && \
RUN apt-get update && \ apt-get install -y -qq git software-properties-common jq ncurses-bin curl
apt-get -y -qq upgrade && \
apt-get -y -qq install software-properties-common jq ncurses-bin curl && \
add-apt-repository ppa:ethereum/ethereum && \
apt-get update && \
apt-get -y -qq install geth solc && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY . /bfa/
RUN chmod +x /bfa/bin/cron.sh /bfa/bin/start.sh
CMD bash -C '/bfa/bin/start.sh';'bash'
EXPOSE 8545 COPY src/install.sh /root/
EXPOSE 30303 CMD bash -C '/root/install.sh';'bash'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment