3e09fe890e
* ui using commons * Update paths in abis * Lint.
22 lines
551 B
Docker
22 lines
551 B
Docker
FROM node:8
|
|
|
|
WORKDIR /mono
|
|
COPY package.json .
|
|
COPY contracts/package.json ./contracts/
|
|
COPY commons/package.json ./commons/
|
|
COPY ui/package.json ./ui/
|
|
COPY ui/lib/web3-eth/index.js ./ui/lib/web3-eth/index.js
|
|
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 ./commons ./commons
|
|
|
|
COPY ./ui ./ui
|
|
WORKDIR /mono/ui
|
|
CMD echo "To start a UI application run:" \
|
|
"yarn start"
|