troutmoose/foundationpose
0
1# Final stage Dockerfile - optimized for HuggingFace2FROM gpue/foundationpose-base-l2:latest3 4# FoundationPose configuration5ENV FOUNDATIONPOSE_MODEL_REPO=gpue/foundationpose-weights6ENV USE_REAL_MODEL=true7 8# Copy application files9WORKDIR /app10COPY app.py client.py estimator.py masks.py .11COPY tests/reference/t_shape /app/tests/reference/t_shape12 13CMD ["python3", "app.py"]14 