Browse Source

🐛 fix(docker): 修正基础镜像源

- 将自定义镜像源 `docker.1ms.run/node:20.19.4-bookworm` 替换为官方镜像 `node:20.19.4-bookworm`
- 确保构建环境的一致性和可靠性
yourname 2 ngày trước cách đây
mục cha
commit
95b5061902
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -1,4 +1,4 @@
-FROM docker.1ms.run/node:20.19.4-bookworm
+FROM node:20.19.4-bookworm
 
 # 清除所有现有的APT源配置
 RUN rm -rf /etc/apt/sources.list.d/* && \