root 1 year ago
parent
commit
0316620600
3 changed files with 33 additions and 33 deletions
  1. 1 1
      deploy/docker_compose/Dockerfile
  2. 12 12
      deploy/docker_compose/entrypoint.sh
  3. 20 20
      deploy/docker_compose/server.py

+ 1 - 1
deploy/docker_compose/Dockerfile

@@ -7,7 +7,7 @@ ENV FLASK_PORT=5000
 # SHELL ["/bin/bash", "--login", "-c"]
 WORKDIR ${work_dir}
 COPY ./ ${work_dir}
-COPY ./entrypoint.sh /
+# COPY ./entrypoint.sh /
 # RUN chmod +x /entrypoint.sh
 RUN pip3 install --upgrade pip
 # RUN python -m pip install -r requirements.txt -U -i https://mirror.baidu.com/pypi/simple

+ 12 - 12
deploy/docker_compose/entrypoint.sh

@@ -1,14 +1,14 @@
 #!/usr/bin/env bash
 
-if [ -z "$1" ]; then
-    if [ -z "$FLASK_APP_PATH" ]; then
-        echo "Environment Variable \`FLASK_APP_PATH\` should not be empty"
-    elif [ -f "$FLASK_APP_PATH" ]; then
-        python "$FLASK_APP_PATH"
-    else
-        echo "Environment Variable \`FLASK_APP_PATH\` is set to \"$FLASK_APP_PATH\" but it does not exist"
-        exit
-    fi
-else
-    bash -c "$1"
-fi
+# if [ -z "$1" ]; then
+#     if [ -z "$FLASK_APP_PATH" ]; then
+#         echo "Environment Variable \`FLASK_APP_PATH\` should not be empty"
+#     elif [ -f "$FLASK_APP_PATH" ]; then
+#         python "$FLASK_APP_PATH"
+#     else
+#         echo "Environment Variable \`FLASK_APP_PATH\` is set to \"$FLASK_APP_PATH\" but it does not exist"
+#         exit
+#     fi
+# else
+#     bash -c "$1"
+# fi

+ 20 - 20
deploy/docker_compose/server.py

@@ -220,26 +220,26 @@ def ocr_text_extract() -> None:
 
 
 
-def get_file_from_url(url_file: str, target_path: str):
-    send_headers = {
-        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36",
-        "Connection": "keep-alive",
-        "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
-        "Accept-Language": "zh-CN,zh;q=0.8"
-    }
-
-    req = requests.get(url_file, headers=send_headers, timeout=10)
-    bytes_io = io.BytesIO(req.content)
-
-    (_, file_name) = os.path.split(url_file)
-    if not os.path.exists(target_path):
-        os.mkdir(target_path)
-    target_path = target_path + file_name
-    with open(target_path, 'wb') as file:
-        file.write(bytes_io.getvalue())
-
-    time.sleep(0.1)
-    return target_path
+# def get_file_from_url(url_file: str, target_path: str):
+#     send_headers = {
+#         "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36",
+#         "Connection": "keep-alive",
+#         "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
+#         "Accept-Language": "zh-CN,zh;q=0.8"
+#     }
+
+#     req = requests.get(url_file, headers=send_headers, timeout=10)
+#     bytes_io = io.BytesIO(req.content)
+
+#     (_, file_name) = os.path.split(url_file)
+#     if not os.path.exists(target_path):
+#         os.mkdir(target_path)
+#     target_path = target_path + file_name
+#     with open(target_path, 'wb') as file:
+#         file.write(bytes_io.getvalue())
+
+#     time.sleep(0.1)
+#     return target_path
 
 if __name__ == '__main__':
     # port = os.environ.get('FLASK_PORT', '')