Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -25,7 +25,7 @@ RUN echo '#!/bin/bash\n' \
|
|
25 |
'# Start tmate session in background\n' \
|
26 |
'(tmate -F > /home/user/tmate.log 2>&1 &)\n\n' \
|
27 |
'# Start FastAPI app\n' \
|
28 |
-
'exec uvicorn
|
29 |
> /app/start.sh && chmod +x /app/start.sh
|
30 |
|
31 |
# Switch to non-root user
|
|
|
25 |
'# Start tmate session in background\n' \
|
26 |
'(tmate -F > /home/user/tmate.log 2>&1 &)\n\n' \
|
27 |
'# Start FastAPI app\n' \
|
28 |
+
'exec uvicorn main:app --host 0.0.0.0 --port 7860' \
|
29 |
> /app/start.sh && chmod +x /app/start.sh
|
30 |
|
31 |
# Switch to non-root user
|