LogicGoInfotechSpaces commited on
Commit
d9963fa
·
1 Parent(s): bd378a6

Change Dockerfile to use main.py instead of main_sdxl.py for CCO model integration

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -63,5 +63,5 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
63
  ENTRYPOINT ["/entrypoint.sh"]
64
 
65
  # Run the application (port will be set via environment variable)
66
- # Use SDXL version for text-guided colorization
67
- CMD ["sh", "-c", "uvicorn app.main_sdxl:app --host 0.0.0.0 --port ${PORT:-7860}"]
 
63
  ENTRYPOINT ["/entrypoint.sh"]
64
 
65
  # Run the application (port will be set via environment variable)
66
+ # Use main.py with GAN and CCO colorization models
67
+ CMD ["sh", "-c", "uvicorn app.main:app --host 0.0.0.0 --port ${PORT:-7860}"]