chore: add some files

This commit is contained in:
2025-10-29 17:49:40 +08:00
parent b7462657cd
commit b1ee21b2da
13 changed files with 150 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
# 使用官方PHP镜像
FROM php:7.4.33-fpm-dev-newshop
# 设置工作目录
WORKDIR /var/www/html
# 暴露端口
EXPOSE 9000 9003
CMD ["php-fpm"]