将GCC编译器安装到Docker容器上

时间:2015-04-19 17:02:29

标签: gcc docker

我正在尝试将mono包安装到Docker容器上,但是mono要求 git,autoconf,libtool,automake,build-essential,mono-devel,gettext包。

我遇到的问题是libtool需要libc-dev,而libc-dev需要gcc编译器。

docker容器没有安装任何编译器,但我的本地机器没有。

arcolombo@acolombo:~/Documents/bedgraph_dockerfile$ dpkg --list |grep    compiler
ii  g++                                                                 4:4.8.2-1ubuntu6                                    amd64        GNU C++ compiler
ii  g++-4.8                                                     4.8.2-19ubuntu1                                     amd64        GNU C++ compiler
ii  gcc                                                         4:4.8.2-1ubuntu6                                    amd64        GNU C compiler
ii  gcc-4.8                                                     4.8.2-19ubuntu1                                     amd64        GNU C compiler
ii  hardening-includes                                          2.5ubuntu2.1                                        all          Makefile for enabling compiler flags for security hardening
ii  libllvm3.5:amd64                                            1:3.5-4ubuntu2~trusty2                              amd64        Modular compiler and toolchain technologies, runtime library
ii  libmono-compilerservices-symbolwriter4.0-cil                   3.2.8+dfsg-4ubuntu1.1                               all          Mono.CompilerServices.SymbolWriter library (for CLI 4.0)
ii  libxkbcommon0:amd64                                         0.4.1-0ubuntu1                                      amd64        library interface to the XKB compiler - shared library
ii  mono-mcs                                                    3.2.8+dfsg-4ubuntu1.1                               all          Mono C# 2.0 / 3.0 / 4.0 / 5.0  compiler for CLI 2.0 / 4.0 / 4.5

所以我的问题是,将gcc编译器放到Docker容器上的最简单方法是什么?我应该在我的docker容器中创建这些编译器目录的卷吗?

我认为我可能需要它的原因是因为我正在运行一个网站,并且该网站直接执行一个泊坞窗图像。

3 个答案:

答案 0 :(得分:16)

在您的Dockerfile中:

FROM ubuntu
# ...
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
    apt-get -y install gcc mono-mcs && \
    rm -rf /var/lib/apt/lists/*

答案 1 :(得分:14)

据我了解,OP已经混淆了术语,可能是要问:

  

将GCC编译器安装到Docker 映像

我的回答首先是解决问题的标题(关于容器),然后转到问题的意图(关于 images )。

如果您可以在容器中运行BASH shell,那么您不需要操作Dockerfile。

比如说,您可以尝试docker run hello-world示例中的提示:

docker run -it ubuntu bash

然后从容器中的shell运行这些......

apt-get update
apt-get install gcc

关键是,如果您不首先运行apt-get install,原始Docker容器中的apt-get update可能无法按预期运行。期待看到......

  

无法找到包gcc

由于"regex" substitution,尝试安装g++而没有apt-get update时出现错误消息更加令人困惑。

另请参阅:http://www.liquidweb.com/kb/how-to-list-and-attach-to-docker-containers

docker ps -a ## list all available containers

docker exec -ti [CONTAINER ID] bash

这种实时操作方法也可用于创建OP可能想要的图像。使用docker commit将您的实时容器另存为新图片。

答案 2 :(得分:4)

您还可以获取已经安装了GCC和/或您已经安装的部分/大部分工具的官方图片。 docker商店已经设置了许多官方图片:https://store.docker.com/search?page_size=99&q=&source=verified

我不确定它是否是正确的单声道,但它们有单声道图像:https://store.docker.com/images/4234a761-444b-4dea-a6b3-31bda725c427?tab=description

GCC官方图片:https://store.docker.com/images/06ad851d-f666-47d3-9ef3-e90535c141ec?tab=description

如果您要自己构建内容,还有buildpack-deps:https://store.docker.com/images/9e56c286-5b40-4838-89fe-fd513c9c3bd6

您可以按类别浏览:https://store.docker.com/search?page_size=99&q=&source=verified

并直接搜索docker hub以获取单声道或您需要的任何内容:https://hub.docker.com/search/?isAutomated=0&isOfficial=0&page=1&pullCount=0&q=mono&starCount=0