build(docker): 使用基础 alpine 镜像替换 alpine:latest
部署开发环境 / deploy-dev (push) Successful in 2m56s

- 将 Dockerfile 中的基础镜像从 alpine:latest 改为 alpine
- 减少镜像标签依赖,使用最新基础镜像版本
This commit is contained in:
2026-04-24 00:32:24 +08:00
parent 650c480416
commit 2786b011a8
+1 -1
View File
@@ -18,7 +18,7 @@ RUN go env -w CGO_ENABLED=0 \
&& go mod tidy \
&& go build -o dypid
FROM alpine:latest
FROM alpine
WORKDIR /data