Update versions and fix formatting issues

This commit is contained in:
yeasy
2026-04-25 15:10:43 +00:00
parent 20a3479f8a
commit 839a63f5af
20 changed files with 34 additions and 16 deletions
+1
View File
@@ -5,6 +5,7 @@
`COPY` 是在构建镜像时将构建上下文Dockerfile 所在目录及其子目录中的文件或目录复制到容器内的指令它是处理应用代码配置文件最常用的方式
典型场景
- 复制应用源码`COPY . /app`
- 复制配置文件`COPY nginx.conf /etc/nginx/nginx.conf`
- 复制静态资源`COPY public /app/public`