Spaces:
Sleeping
Sleeping
File size: 377 Bytes
3968781 c58f0bb 2df2c23 3968781 2df2c23 dd44013 2df2c23 c58f0bb 2df2c23 c58f0bb 58e94fa 42ce71e 2df2c23 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Final stage Dockerfile - optimized for HuggingFace
FROM gpue/foundationpose-base-l2:latest
# FoundationPose configuration
ENV FOUNDATIONPOSE_MODEL_REPO=gpue/foundationpose-weights
ENV USE_REAL_MODEL=true
# Copy application files
WORKDIR /app
COPY app.py client.py estimator.py masks.py .
COPY tests/reference/t_shape /app/tests/reference/t_shape
CMD ["python3", "app.py"]
|