Skip to content
This repository has been archived by the owner on Apr 21, 2020. It is now read-only.

fix build essential #102

Merged
3 commits merged into from
Jan 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Install docker and docker-compose.
Set in *~/.bashrc*
```export COMPOSE_FILE=docker-compose.yml:docker-compose.dev.yml```

Set in .env
```MONGODB_URI=mongodb://mongodb:27017/trust-wallet```

Dev tool:

* Run build for npm install and build
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY ./entrypoints /entrypoints

WORKDIR /opt/server

RUN apt-get update && apt-get install -y curl git make
RUN apt-get update && apt-get install -y build-essential curl git make
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
RUN apt-get update && apt-get install -y nodejs && npm install -g npm@5.6

Expand Down