构建一个ubuntu docker镜像

时间:2014-11-25 00:58:13

标签: docker

我对码头工人来说是全新的...但我想做以下事情......

1) git clone git_repo
2) sudo apt-get install dependencies
3) cd to clone repo and do ./compile --flags=true
    make
     make install
4) Then curl filename -o output folder
5) tar xvf /path/to/curl_folder/filename.tar

就是这样。我要通过文档,但我仍然迷失

1 个答案:

答案 0 :(得分:1)

这是一篇关于如何从docker容器克隆私有git repo的文章:http://slash-dev-blog.me/docker-git.html这将有助于您的第1步和第2步。

要完成步骤3-5,您可以将以下内容添加到Dockerfile:

WORKDIR  /path/to/clone/repo
RUN ./compile --flags=true
RUN make
RUN make install
RUN curl filename -o output_folder
RUN tar xvf /path/to/curl_folder/filename.tar

准备好Dockerfile后,可以从Dockerfile构建映像。以下是从Dockerfile http://docs.docker.com/userguide/dockerimages/#creating-our-own-images

创建图像的教程

希望这会有所帮助。如果您需要更多帮助,请告诉我