加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 581 Bytes
一键复制 编辑 原始数据 按行查看 历史
billchenchina 提交于 2020-07-01 23:32 . Update OI wiki repo link(2)
# Set the base image to Ubuntu16.04
FROM ubuntu:16.04
MAINTAINER frank-xjh "frank99-xu@outlook.com"
WORKDIR /
RUN apt-get update \
&& apt-get install -y git wget curl python3 python3-pip gcc g++ make \
&& curl https://bootstrap.pypa.io/get-pip.py | python3 \
&& curl -sL https://deb.nodesource.com/setup_10.x | bash - \
&& apt-get install -y nodejs
RUN git clone https://github.com/OI-wiki/OI-wiki.git --depth=1 \
&& cd OI-wiki \
&& pip install -U -r requirements.txt \
&& npm install
ADD .bashrc /root/
WORKDIR /OI-wiki
EXPOSE 8000
CMD ["/bin/bash"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化