parent
804eb5544f
commit
4b5a861360
@ -0,0 +1,5 @@ |
||||
zend_extension=xdebug |
||||
xdebug.mode=debug |
||||
xdebug.client_host=host.docker.internal |
||||
xdebug.client_port=9003 |
||||
xdebug.idekey=PHPSTORM |
@ -0,0 +1,43 @@ |
||||
FROM php:8.3-fpm |
||||
|
||||
ARG PROJECT_PATH |
||||
|
||||
WORKDIR ${PROJECT_PATH} |
||||
|
||||
RUN apt-get update && apt-get install -y \ |
||||
git \ |
||||
zip \ |
||||
unzip \ |
||||
libpq-dev \ |
||||
libzip-dev \ |
||||
libpng-dev \ |
||||
libfreetype6-dev \ |
||||
libxml2-dev \ |
||||
libicu-dev \ |
||||
libjpeg62-turbo-dev \ |
||||
&& docker-php-ext-configure intl \ |
||||
&& docker-php-ext-configure pcntl --enable-pcntl \ |
||||
&& docker-php-ext-install -j$(nproc) \ |
||||
bcmath \ |
||||
pdo_mysql \ |
||||
pdo_pgsql \ |
||||
gd \ |
||||
zip \ |
||||
exif \ |
||||
sockets \ |
||||
intl \ |
||||
soap \ |
||||
pcntl \ |
||||
&& pecl install \ |
||||
redis \ |
||||
xdebug \ |
||||
&& docker-php-ext-enable \ |
||||
redis \ |
||||
xdebug \ |
||||
&& apt-get clean \ |
||||
&& apt-get autoclean |
||||
|
||||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer |
||||
|
||||
# 修改 composer 为国内镜像 |
||||
RUN composer config -g repo.packagist composer https://mirrors.cloud.tencent.com/composer/ |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,10 @@ |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free |
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free |
||||
|
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free |
||||
|
||||
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free |
||||
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free |
Loading…
Reference in new issue