Compare commits

..

12 Commits

Author SHA1 Message Date
ec68377044 feat(升级版本): 升级版本
All checks were successful
continuous-integration/drone/push Build is passing
2024-10-08 19:33:08 +08:00
5694906c24 feat(升级版本): 升级版本
All checks were successful
continuous-integration/drone/push Build is passing
2024-09-21 22:30:16 +08:00
89a7135230 feat(更新扩展): 更新扩展
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-22 23:35:48 +08:00
5cc08d5bc7 feat(更新版本): 更新版本
All checks were successful
continuous-integration/drone/push Build is passing
2024-06-14 10:54:16 +08:00
8a03d32faf feat(更新组件): 更新组件
All checks were successful
continuous-integration/drone/push Build is passing
2024-03-14 12:41:26 +08:00
a732b4957a feat(升级版本): 升级版本 2024-03-14 12:40:18 +08:00
53e524a529 feat(基础镜像): 更新基础镜像
All checks were successful
continuous-integration/drone/push Build is passing
2024-02-14 06:25:52 +08:00
f53a4d5157 feat(升级版本): 升级版本
All checks were successful
continuous-integration/drone/push Build is passing
2023-11-11 12:58:44 +08:00
2fe86a064e feat(更新版本): 更新版本
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing
2023-09-21 23:06:11 +08:00
d9bdc5a48c feat(更新版本): 更新版本
All checks were successful
continuous-integration/drone/push Build is passing
2023-08-28 20:59:59 +08:00
f0938ae3ed feat(更新镜像): 更新镜像
All checks were successful
continuous-integration/drone/push Build is passing
2023-07-12 15:14:19 +08:00
9a321bb67f feat(更新依赖): 更新依赖 2023-07-12 15:13:04 +08:00
2 changed files with 19 additions and 8 deletions

View File

@ -1,10 +1,21 @@
---
kind: pipeline
type: docker
name: docker
name: default
node:
region: cn
steps:
- name: docker
- name: docker-cn
pull: if-not-exists
image: plugins/docker
settings:
repo: ccr.ccs.tencentyun.com/xiaoqidun/pfenv
registry: ccr.ccs.tencentyun.com
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: Dockerfile
- name: docker-hk
pull: if-not-exists
image: plugins/docker
settings:

View File

@ -1,14 +1,14 @@
# 基础镜像
FROM php:8.2.5-fpm
FROM php:8.3.12-fpm
# 作者信息
LABEL MAINTAINER="xiaoqidun@gmail.com"
LABEL authors="xiaoqidun"
# 安装扩展
RUN pecl install redis-5.3.7 \
RUN pecl install redis-6.1.0RC1 \
&& docker-php-ext-enable redis
RUN pecl install xdebug-3.2.1 \
RUN pecl install xdebug-3.3.2 \
&& docker-php-ext-enable xdebug
RUN pecl install runkit7-4.0.0a6 \