File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,29 @@ RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/
17
17
# Set up the environment.
18
18
ARG ID_ED25519_PRIV="none"
19
19
RUN if [ "${ID_ED25519_PRIV}" != "none" ]; then su vscode -c "mkdir -p ~/.ssh/ && echo -e \" ${ID_ED25519_PRIV}\" > ~/.ssh/id_ed25519 && chmod 600 ~/.ssh/id_ed25519 && ssh-keyscan github.com >> ~/.ssh/known_hosts" ; fi
20
+
21
+ # Install php-ext sockets & bcmath
22
+ RUN set -ex \
23
+ && apt-get update \
24
+ && apt-get install -y libssl-dev libcurl4-openssl-dev zsh \
25
+ && chsh -s /bin/zsh vscode \
26
+ && docker-php-ext-install sockets bcmath
27
+
28
+ # Install php-ext redis
29
+ RUN set -ex \
30
+ && pecl install redis \
31
+ && echo "extension=redis.so" > /usr/local/etc/php/conf.d/redis.ini
32
+
33
+ # Install php-ext swoole
34
+ ARG SWOOLE_VERSION="none"
35
+ ARG SWOOLE_CONFIGURE_OPTIONS="'enable-sockets=\" no\" enable-openssl=\" yes\" enable-http2=\" yes\" enable-mysqlnd=\" yes\" enable-swoole-json=\" no\" enable-swoole-curl=\" yes\" enable-cares=\" yes\" '"
36
+ RUN set -ex \
37
+ && if [ "${SWOOLE_VERSION}" != "none" ]; then PACKAGE="http://pecl.php.net/get/swoole-${SWOOLE_VERSION}.tgz" ; else PACKAGE="swoole" ; fi \
38
+ && pecl install --configureoptions ${SWOOLE_CONFIGURE_OPTIONS} ${PACKAGE} \
39
+ && echo "extension=swoole.so" > /usr/local/etc/php/conf.d/swoole.ini \
40
+ && echo "swoole.use_shortname = 'Off'" >> /usr/local/etc/php/conf.d/swoole.ini
41
+
42
+ # Configure PHP
43
+ RUN set -ex \
44
+ && echo "memory_limit=1G" > /usr/local/etc/php/conf.d/default.ini \
45
+ && echo "opcache.enable_cli = 'On'" >> /usr/local/etc/php/conf.d/opcache.ini
Original file line number Diff line number Diff line change 10
10
// Use -bullseye variants on local on arm64/Apple Silicon.
11
11
"VARIANT" : " 7-bullseye" ,
12
12
"NODE_VERSION" : " lts/*" ,
13
- "ID_ED25519_PRIV" : " ${localEnv:ID_ED25519_PRIV}"
13
+ "ID_ED25519_PRIV" : " ${localEnv:ID_ED25519_PRIV}" ,
14
+ // Swoole version: 4.5.7 ~ 4.8.9
15
+ "SWOOLE_VERSION" : " none" ,
16
+ // https://wiki.swoole.com/#/environment?id=pecl
17
+ "SWOOLE_CONFIGURE_OPTIONS" : " 'enable-sockets=\" yes\" enable-openssl=\" yes\" enable-http2=\" yes\" enable-mysqlnd=\" yes\" enable-swoole-json=\" yes\" enable-swoole-curl=\" yes\" enable-cares=\" yes\" '"
14
18
}
15
19
},
16
20
You can’t perform that action at this time.
0 commit comments