2026-08-07 10:57:50 +08:00
|
|
|
FROM swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/python:3.10-slim
|
2026-08-06 11:05:00 +08:00
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY test_restart.py /app/test_restart.py
|
|
|
|
|
|
|
|
|
|
ENV PORT=8080
|
|
|
|
|
ENV RUN_SECONDS=60
|
|
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=10s --timeout=3s --start-period=3s --retries=3 \
|
|
|
|
|
CMD python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8080/health', timeout=2)" || exit 1
|
|
|
|
|
|
|
|
|
|
CMD ["python", "/app/test_restart.py"]
|