From a9db8576eb08e2a974cd817fb9319f53594a8736 Mon Sep 17 00:00:00 2001 From: liuyuanchuang Date: Tue, 16 Dec 2025 11:24:11 +0800 Subject: [PATCH] build: update dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec077d8..2c58e48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.20-alpine AS builder +FROM crpi-8s2ierii2xan4klg-vpc.cn-beijing.personal.cr.aliyuncs.com/texpixel/golang:1.20-alpine AS builder WORKDIR /app @@ -16,7 +16,7 @@ RUN go mod download && \ CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o doc_ai ./main.go # Runtime stage -FROM alpine:latest +FROM crpi-8s2ierii2xan4klg-vpc.cn-beijing.personal.cr.aliyuncs.com/texpixel/alpine:latest # Set timezone RUN apk add --no-cache tzdata && \