1 Star 0 Fork 9

angushe/XSCE

forked from BaseBit.ai/XSCE 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 742 Bytes
一键复制 编辑 原始数据 按行查看 历史
重楼 提交于 2022-07-24 18:50 . init source code
FROM ubuntu:20.04 as baseenv
RUN apt-get update \
&& apt-get install -y vim automake build-essential git wget libssl-dev libtool python3 python3-pip >/dev/null \
&& apt-get clean
#install cmake
RUN mkdir -p /thirdparty/cmake-src \
&& cd /thirdparty/cmake-src \
&& wget https://github.com/Kitware/CMake/releases/download/v3.22.2/cmake-3.22.2.tar.gz >/dev/null \
&& tar -zxvf cmake-3.22.2.tar.gz >/dev/null \
&& cd cmake-3.22.2 \
&& ./bootstrap >/dev/null \
&& make >/dev/null \
&& make install
FROM baseenv as builder
COPY ./ /xsce/
RUN cd /xsce && ls && ./build.py libote xsce clean && ./build.py install=/opt/xsce_install
FROM baseenv as machine
COPY --from=builder /opt/xsce_install/ /usr/local
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/angushe/XSCE.git
[email protected]:angushe/XSCE.git
angushe
XSCE
XSCE
master

搜索帮助