From bcba73c446a485cb823df79ebe301713ae452ab2 Mon Sep 17 00:00:00 2001 From: Ching Date: Wed, 7 Feb 2024 23:34:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(Dockerfile):=20=E4=BF=AE=E5=A4=8D=20Python?= =?UTF-8?q?=20image=20=E8=B7=AF=E5=BE=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复 Python image 路径错误 Signed-off-by: Ching --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a45124c..5d4aa60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # 使用自定义 Docker Registry 中的官方 Python 镜像作为基础镜像 -FROM git.tunpok.com/python:3.10-alpine +FROM git.tunpok.com/ching/python:3.10-alpine # 设置工作目录 WORKDIR /app