Move Dockerfile for nncc into infra directory (#5744)
author박천교/On-Device Lab(SR)/Engineer/삼성전자 <ch.bahk@samsung.com>
Tue, 23 Jul 2019 00:53:40 +0000 (09:53 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Tue, 23 Jul 2019 00:53:40 +0000 (09:53 +0900)
Previously nncc Dockerfile was placed in home directory. This commit
moves the Dockerfile into 'infra/nncc' directory. Related documentation
also edited.

Signed-off-by: Cheongyo Bahk <ch.bahk@samsung.com>
docs/nncc/getting_started.md
infra/nncc/Dockerfile [moved from Dockerfile with 100% similarity]

index 685f5af..69076ee 100644 (file)
@@ -10,20 +10,20 @@ _nncc_ provides ``Dockerfile`` in order to make it easy to setup development env
 
 One may build ``nncc`` docker image with the following command:
 ```
-nncc$ cat Dockerfile | docker build -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build -t nncc -
 ...
 ```
 
 By default, this ``Dockerfile`` uses "archive.ubuntu.com" which may be quite slow. One may use mirror site via ``UBUNTU_MIRROR`` variable.
 For example, one may enable the use of ``kr.archive.ubuntu.com`` via the following command
 ```
-nncc$ cat Dockerfile | docker build --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
 ...
 ```
 
 One who works behind proxy should provide proxy configuration via the following command:
 ```
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY=<HTTP proxy address> --build-arg HTTPS_PROXY=<HTTPS proxy address> -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY=<HTTP proxy address> --build-arg HTTPS_PROXY=<HTTPS proxy address> -t nncc -
 ...
 ```
 One may use simplified command if ``HTTP_PROXY`` and ``HTTPS_PROXY`` environment variables are already set:
@@ -33,13 +33,13 @@ nncc$ export
 declare -x HTTP_PROXY=...
 declare -x HTTPS_PROXY=...
 ...
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY -t nncc -
 ...
 ```
 
 Note that these configurations are orthogonal to each other. One may freely combine these options as follows:
 ```
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
 ```
 
 One may easily build _nncc_ with the following command once ``nncc`` docker image is built.
similarity index 100%
rename from Dockerfile
rename to infra/nncc/Dockerfile