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
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,4 +14,4 @@ RUN cd /app \
WORKDIR /app
ENTRYPOINT ["sh", "entrypoint.sh"]
CMD ["python3", "ocr_server.py", "--port", "9898", "--ocr", "--det"]
-2
View File
@@ -1,2 +0,0 @@
#!/bin/sh
python3 ocr_server.py --port 9898 --ocr --det
+2
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
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB