gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 12:42:53 30 4
gpt4 key购买 nike

我正在尝试将 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 容器中吗?

我认为我可能需要它的原因是因为我正在运行一个网站,而该网站直接执行了一个docker镜像。

最佳答案

在您的 Dockerfile 中:

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

关于gcc - 将 GCC 编译器安装到 Docker 容器上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29732990/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com