8f47c93369
* Removed duplicate entry * Started introducing ui dockerfile * frozen lockfiles * Removed unnecessary steps from Dockerfile.e2e * Added start instruction * Added docker-compose with instructions to UI * Updated readme. * Removed unnecessary command
25 lines
745 B
Docker
25 lines
745 B
Docker
FROM node:8
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y build-essential
|
|
RUN apt-get install -y libc6-dev
|
|
RUN apt-get install -y libc6-dev-i386
|
|
RUN apt-get install -y wget
|
|
RUN apt-get clean
|
|
|
|
WORKDIR /mono
|
|
COPY package.json .
|
|
COPY contracts/package.json ./contracts/
|
|
COPY oracle/package.json ./oracle/
|
|
COPY yarn.lock .
|
|
RUN yarn install --production --frozen-lockfile
|
|
|
|
COPY ./contracts ./contracts
|
|
RUN yarn run compile:contracts
|
|
RUN mv ./contracts/build ./ && rm -rf ./contracts/* ./contracts/.[!.]* && mv ./build ./contracts/
|
|
|
|
COPY ./oracle ./oracle
|
|
WORKDIR /mono/oracle
|
|
CMD echo "To start a bridge process run:" \
|
|
"VALIDATOR_ADDRESS=<validator address> VALIDATOR_ADDRESS_PRIVATE_KEY=<validator address private key> docker-compose up -d --build"
|