From 172eaba501e44d6099c6f744fce2a0c9b71cbc7d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=B2=9C=EA=B5=90/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Tue, 23 Jul 2019 09:53:40 +0900 Subject: [PATCH] Move Dockerfile for nncc into infra directory (#5744) 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 --- docs/nncc/getting_started.md | 10 +++++----- Dockerfile => infra/nncc/Dockerfile | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename Dockerfile => infra/nncc/Dockerfile (100%) diff --git a/docs/nncc/getting_started.md b/docs/nncc/getting_started.md index 685f5af..69076ee 100644 --- a/docs/nncc/getting_started.md +++ b/docs/nncc/getting_started.md @@ -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= --build-arg HTTPS_PROXY= -t nncc - +nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY= --build-arg HTTPS_PROXY= -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. diff --git a/Dockerfile b/infra/nncc/Dockerfile similarity index 100% rename from Dockerfile rename to infra/nncc/Dockerfile -- 2.7.4