Skip to content
This repository has been archived by the owner on Jul 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6 from omisego/fix_docker_compose_startup
Browse files Browse the repository at this point in the history
fix: Add missing dependencies and modify truffle invocation
  • Loading branch information
cypherhat authored Jan 22, 2020
2 parents aba90dd + 2510f4e commit 0a5cc7b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docker/truffle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
FROM ajmay/truffle

RUN apt update -y \
&& apt install -y netcat jq
&& apt install -y netcat jq python make g++

RUN git clone https://github.com/omisego/plasma-contracts.git \
&& cd plasma-contracts/plasma_framework \
&& npm install \
&& truffle compile \
&& truffle tests
&& npm install typescript \
&& npx truffle compile \
&& npm run test

0 comments on commit 0a5cc7b

Please sign in to comment.