luoyulong 2 years ago
parent
commit
7359ff2e70
4 changed files with 7 additions and 7 deletions
  1. 1 1
      Makefile
  2. 5 5
      docker-compose.yml
  3. 1 1
      server.py
  4. 0 0
      utils/webutil.py

+ 1 - 1
Makefile

@@ -9,5 +9,5 @@ AUTHOR          := $(shell git show -s --format='%an')
 all: gpu
 all: gpu
 gpu:
 gpu:
 	@docker build -t registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):gpu --build-arg VERSION=gpu .
 	@docker build -t registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):gpu --build-arg VERSION=gpu .
-	@docker push registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):gpu
+	# @docker push registry.cn-hangzhou.aliyuncs.com/sxtest/$(NAME):gpu
 
 

+ 5 - 5
docker-compose.yml

@@ -13,8 +13,8 @@ services:
       - '18089:8080'
       - '18089:8080'
     volumes:
     volumes:
       - ./:/workspace
       - ./:/workspace
-    #deploy:
-    #  resources:
-    #    reservations:
-    #      devices:
-    #        - capabilities: [gpu]
+    # deploy:
+    #   resources:
+    #     reservations:
+    #       devices:
+    #         - capabilities: [gpu]

+ 1 - 1
server.py

@@ -2,7 +2,7 @@ from fastapi import FastAPI, Request, Form, File, UploadFile
 from fastapi.templating import Jinja2Templates
 from fastapi.templating import Jinja2Templates
 from pydantic import BaseModel
 from pydantic import BaseModel
 from typing import List, Optional
 from typing import List, Optional
-from utils.web-util import web_try
+from utils.webutil import web_try
 import cv2
 import cv2
 import numpy as np
 import numpy as np
 
 

+ 0 - 0
utils/web-util.py → utils/webutil.py