Guest User

Untitled

a guest
Feb 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. > web3.eth.accounts
  2. Accounts {
  3. currentProvider: [Getter/Setter],
  4. _requestManager:
  5. RequestManager {
  6. provider:
  7. HttpProvider {
  8.  
  9. FROM node:carbon
  10.  
  11. # Create app directory
  12. WORKDIR /usr/src/app
  13.  
  14.  
  15. # Install app dependencies
  16. # A wildcard is used to ensure both package.json AND package-lock.json are copied
  17. # where available (npm@5+)
  18. COPY package*.json ./
  19.  
  20. RUN apt-get -y update &&
  21. apt-get -y install vim
  22.  
  23. RUN npm install
  24.  
  25. RUN npm install express
  26.  
  27. RUN npm install nodemon -g
  28.  
  29. RUN npm install hashmap &&
  30. npm install body-parser -g
  31.  
  32. # If you are building your code for production
  33. # RUN npm install --only=production
  34.  
  35.  
  36.  
  37. # Bundle app source
  38. COPY . .
  39.  
  40.  
  41. CMD [ "nodemon", "start" ]
Add Comment
Please, Sign In to add comment