Last active
September 20, 2024 02:21
-
-
Save minhoryang/2a36fa760fa7a6cf9dce09d8c9ef532d to your computer and use it in GitHub Desktop.
Revisions
-
minhoryang revised this gist
Apr 11, 2017 . 2 changed files with 9 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ FROM ubuntu:latest RUN apt-get update RUN apt-get install -y --no-install-recommends apt-utils build-essential sudo git RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo USER docker This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1 +1,5 @@ # docker-ubuntu-build-essential docker build -t ubuntu-build-esssential . docker run -t -i ubuntu-build-esssential -
minhoryang created this gist
Apr 11, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ # docker-ubuntu-build-essential