-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NguyenNguyen
committed
Jul 25, 2018
1 parent
9b2ad04
commit 04759ee
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:8 | ||
|
||
MAINTAINER Nguyen Nguyen <nguyenbk92@gmail.com> | ||
# Set the working directory to /app | ||
WORKDIR /app | ||
|
||
# Copy the current directory contents into the container at /app | ||
COPY contracts /app/contracts/ | ||
COPY compile.js /app | ||
COPY compile_Inbox.js /app | ||
COPY deploy.js /app | ||
COPY test /app/test/ | ||
COPY package*.json /app/ | ||
|
||
RUN npm install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters