加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
hanwckf 提交于 2020-10-06 22:10 . toolchain: strip executables
FROM ubuntu:bionic
MAINTAINER hanwckf <hanwckf@vip.qq.com>
ENV DEBIAN_FRONTEND noninteractive
ARG APT_MIRROR_URL
RUN if test -n "$APT_MIRROR_URL"; then \
sed -i "s#http://archive.ubuntu.com#$APT_MIRROR_URL#; \
s#http://security.ubuntu.com#$APT_MIRROR_URL#; \
s#http://ports.ubuntu.com#$APT_MIRROR_URL#" \
/etc/apt/sources.list; fi
RUN apt -y -q update && apt -y -q upgrade && \
apt install -y -q unzip libtool-bin curl cmake gperf gawk flex bison htop \
nano xxd fakeroot cpio git python-docutils gettext automake autopoint \
texinfo build-essential help2man pkg-config zlib1g-dev libgmp3-dev libmpc-dev \
libmpfr-dev libncurses5-dev libltdl-dev wget kmod sudo locales vim && \
rm -rf /var/cache/apt/
RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && locale-gen
ENV LANG en_US.utf8
# See https://github.com/hanwckf/padavan-toolchain/releases
ADD mipsel-linux-uclibc.tar.xz /opt/rt-n56u/toolchain-mipsel/toolchain-3.4.x
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化