From 2c9dafd3c2fdbaf70bc98055153cbaa628d4cce3 Mon Sep 17 00:00:00 2001 From: boomkim Date: Thu, 12 Jul 2018 17:06:25 +0900 Subject: [PATCH] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit amazonlinux에 tar와 gzip이 포함되어 있지 않아서 build 명령시에 tar: command not found 오류가 납니다. tar, gzip 설치후 해결되었습니다. --- Source/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/Dockerfile b/Source/Dockerfile index 3daabf0..b671118 100644 --- a/Source/Dockerfile +++ b/Source/Dockerfile @@ -4,10 +4,12 @@ WORKDIR /tmp #install the dependencies RUN yum -y install gcc-c++ && yum -y install findutils +RUN yum -y install tar gzip + RUN touch ~/.bashrc && chmod +x ~/.bashrc RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash RUN source ~/.bashrc && nvm install 6.10 -WORKDIR /build \ No newline at end of file +WORKDIR /build