https://github.com/wildmeshing/TriWild
Revision 1e888b46a23fac646f328e780209aeeb7f1a122b authored by Yixin Hu on 11 June 2019, 22:07:26 UTC, committed by GitHub on 11 June 2019, 22:07:26 UTC
1 parent c86ef93
Raw File
Tip revision: 1e888b46a23fac646f328e780209aeeb7f1a122b authored by Yixin Hu on 11 June 2019, 22:07:26 UTC
Update README.md
Tip revision: 1e888b4
Dockerfile
# Use an official Python runtime as a parent image
FROM ubuntu

# Install any needed packages specified in requirements.txt
RUN apt-get update && apt-get install -y git cmake g++ libgmp3-dev

# Set the working directory to /app
WORKDIR /app

# Download and compile TriWild
RUN git clone https://github.com/wildmeshing/TriWild/
WORKDIR /app/TriWild/build
RUN cmake .. && make

WORKDIR /data

ENTRYPOINT ["/app/TriWild/build/TriWild"]

## Create TriWild image with:
# docker build -t triwild .
## Run TriWild with:
# docker run --rm -v "$(pwd)":/data triwild [TriWild arguments]
back to top