File size: 439 Bytes
51197de |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
version: '3.4'
services:
omniparser:
image: omniparser
build:
context: .
dockerfile: ./Dockerfile
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 -m flask run --no-debugger --no-reload --host 0.0.0.0 --port 5002"]
ports:
- 5002:5002
- 5678:5678
environment:
- FLASK_APP=weights\convert_safetensor_to_pt.py
|