加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yixin Hu 提交于 2020-11-14 21:58 . Update Dockerfile
# Use an official Python runtime as a parent image
FROM ubuntu
ENV DEBIAN_FRONTEND=noninteractive
# Install any needed packages specified in requirements.txt
RUN apt-get update && apt-get install -y git cmake g++ libcgal-dev
# Set the working directory to /app
WORKDIR /app
# Download and compile TetWild
RUN git clone https://github.com/Yixin-Hu/TetWild --recursive
WORKDIR /app/TetWild/build
RUN cmake .. && make
WORKDIR /data
ENTRYPOINT ["/app/TetWild/build/TetWild"]
## Create TetWild image with:
# docker build -t tetwild .
## Run TetWild with:
# docker run --rm -v "$(pwd)":/data tetwild [TetWild arguments]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化