Speedofmastery commited on
Commit
e2a1596
·
1 Parent(s): fc315e7

Auto-commit: Dockerfile updated

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -7
Dockerfile CHANGED
@@ -38,10 +38,5 @@ EXPOSE 7860 8000
38
  HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 \
39
  CMD curl -f http://localhost:7860/ || exit 1
40
 
41
- # Create non-root user for security
42
- RUN useradd -m -u 1000 openmanus && \
43
- chown -R openmanus:openmanus /app/OpenManus
44
- USER openmanus
45
-
46
- # Default command for complete production deployment
47
- CMD ["python", "app_production.py"]
 
38
  HEALTHCHECK --interval=30s --timeout=30s --start-period=60s --retries=3 \
39
  CMD curl -f http://localhost:7860/ || exit 1
40
 
41
+ # Gradio apps run on port 7860 by default
42
+ CMD ["python", "app.py"]