d656025378
* Moved audit to root directory. * Moved code of conduct, contributing and licence files. * Removed travis config and badge. * Updated repository links in CONTRIBUTING. * Moved Gitter badge to main readme. Updated links to contributing and licence. * Updated main readme. * Moved references to main readme. * Renamed token-bridge to oracle. * Update README.md Co-Authored-By: rzadp <rzadp@student.mini.pw.edu.pl>
17 lines
452 B
Docker
17 lines
452 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 /bridge
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
RUN npm install
|
|
COPY . .
|
|
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"
|