We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1727321 commit 5853da0Copy full SHA for 5853da0
1 file changed
Dockerfile
@@ -13,9 +13,9 @@ RUN mkdir -p /model
13
14
ADD . /server
15
WORKDIR /server
16
-RUN pip3 install -r requirements-server.txt
+RUN pip3 install --no-cache-dir -r requirements-server.txt
17
18
EXPOSE 8000
19
20
ENTRYPOINT ["sh", "-c"]
21
-CMD ["python main.py --model /model/${MODEL_FILE_NAME} --host ${SERVER_HOST} --port ${SERVER_PORT} --label=${YOLO_LABEL_FILE} --c_thres ${YOLO_CONFIDENCE_THRESHOLD} --iou_thres ${YOLO_IOU_THRESHOLD}"]
+CMD ["python main.py --model /model/${MODEL_FILE_NAME} --host ${SERVER_HOST} --port ${SERVER_PORT} --label=${YOLO_LABEL_FILE} --c_thres ${YOLO_CONFIDENCE_THRESHOLD} --iou_thres ${YOLO_IOU_THRESHOLD}"]
0 commit comments