Revision ac7977c1da9fb25de8c0f7c666055e6d09034686 authored by Yixin-Hu on 16 December 2022, 12:55:44 UTC, committed by Yixin-Hu on 16 December 2022, 12:55:44 UTC
1 parent 51cf458
Raw File
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++ 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