Merge pull request #2 from NowAnti/main

修改镜像启动方式为CMD,以支持直接docker run时更改启动参数
This commit is contained in:
Sml2h3 2022-01-17 22:47:28 +08:00 committed by GitHub
commit 3ba6e63d5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View File

@ -14,4 +14,4 @@ RUN cd /app \
WORKDIR /app
ENTRYPOINT ["sh", "entrypoint.sh"]
CMD ["python3", "ocr_server.py", "--port", "9898", "--ocr", "--det"]

View File

@ -1,2 +0,0 @@
#!/bin/sh
python3 ocr_server.py --port 9898 --ocr --det

View File

@ -17,6 +17,8 @@ print(' ')
# 目标检测就把ocr改成det,其他相同
# 方式一
file = open(r'test.jpg', 'rb').read()
# file = open(r'test_calc.png', 'rb').read()
api_url = f"{host}/ocr/file"
resp = requests.post(api_url, files={'image': file})

BIN
test_calc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB