Skip to content

Commit 570d2ba

Browse files
committed
[fix] docker entrypoint fixes
1 parent ccaaa17 commit 570d2ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ else
2929
echo "Starting FastAPI app..."
3030

3131
if [ "$APP_ENV" = "production" ]; then
32-
exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 &
32+
exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000
3333
else
34-
exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 --reload &
34+
exec uvicorn text_extract_api.main:app --host 0.0.0.0 --port 8000 --reload
3535
fi
3636
fi

0 commit comments

Comments
 (0)