feat: add deployment configuration and scripts for managed-portal, including Dockerfiles and environment settings

This commit is contained in:
2026-05-13 16:49:21 +08:00
parent 330373b8f1
commit f8a6d9803d
13 changed files with 563 additions and 71 deletions

View File

@@ -3,7 +3,7 @@ FROM swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/library/python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple \
PIP_INDEX_URL=https://mirrors.aliyun.com/pypi/simple/ \
DEEPFACE_HOME=/root/.deepface \
TF_CPP_MIN_LOG_LEVEL=2
@@ -19,8 +19,7 @@ RUN sed -i 's|http://deb.debian.org/debian|http://mirrors.aliyun.com/debian|g; s
COPY requirements-docker.txt ./requirements-docker.txt
RUN python -m pip install --upgrade pip setuptools wheel && \
pip install "numpy<2"
RUN pip install "numpy<2"
RUN pip install --extra-index-url https://download.pytorch.org/whl/cpu \
"torch==2.6.0+cpu" "torchvision==0.21.0+cpu"
@@ -32,17 +31,12 @@ RUN pip install -r requirements-docker.txt
COPY . .
COPY scripts/docker-entrypoint.sh /opt/people-flow/scripts/docker-entrypoint.sh
RUN test -f /opt/people-flow/weights/yolo11n.pt && \
test -f /opt/people-flow/weights/deepface/age_model_weights.h5 && \
test -f /opt/people-flow/weights/deepface/gender_model_weights.h5 && \
test -f /opt/people-flow/weights/deepface/retinaface.h5 && \
mkdir -p /root/.deepface/weights /opt/people-flow/outputs && \
cp /opt/people-flow/weights/deepface/*.h5 /root/.deepface/weights/ && \
RUN mkdir -p /root/.deepface/weights /opt/people-flow/outputs && \
chmod +x /opt/people-flow/scripts/docker-entrypoint.sh
EXPOSE 18082
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s --retries=3 \
CMD python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:18082/api/manage/health', timeout=3).read()" || exit 1
CMD python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:18082/api/manage/health', timeout=3).read()" || exit 1
ENTRYPOINT ["/opt/people-flow/scripts/docker-entrypoint.sh"]