24 Star 74 Fork 13

科学大数据开源社区/图数据库系统-gStore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 992 Bytes
一键复制 编辑 原始数据 按行查看 历史
suxunbin 提交于 2019-12-17 19:19 +08:00 . Modify the Dockerfile
#This Dockerfile is just a primitive one. We welcome optimization and simplification.
#Attention:
#It is best to update the process of modification in the rear of the original code(reduce the order changes).
#Otherwise the speed of construction will be influenced on a large scale.
#TODO: some space can be saved by using the low version of gcc mirror(e.g-gcc:5).
#But its mobility and dependence has not been tested yet and waiting for confirmation.
FROM registry.docker-cn.com/library/gcc:8
#download all the optional installation library in gstore's document.
RUN apt-get update && apt-get install -y --no-install-recommends realpath \
ccache \
vim \
lsof \
openjdk-8-jdk \
libreadline-dev \
libboost-all-dev \
&& rm -rf /var/lib/apt/lists/
COPY . /usr/src/gstore
WORKDIR /usr/src/gstore
#The solution to the problem of java, whose default setting is using ansii to encode.
ENV LANG C.UTF-8
EXPOSE 80
RUN make pre
RUN make
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/opensci/gStore.git
git@gitee.com:opensci/gStore.git
opensci
gStore
图数据库系统-gStore
master

搜索帮助