We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e0e26 commit ce4d7eeCopy full SHA for ce4d7ee
.platform.app.yaml
@@ -28,8 +28,6 @@ dependencies:
28
node-sass: '^4.9.4'
29
php:
30
composer/composer: '^2'
31
- ruby:
32
- bundler: 2.3.26
33
34
hooks:
35
build: |
docker/php/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM php:8.0-cli-alpine
+FROM php:8.1-cli-alpine
2
3
RUN apk add --no-cache \
4
bash \
@@ -20,7 +20,9 @@ RUN addgroup -g $GID fig && adduser -D -G fig -u $UID fig \
20
&& chown fig:fig /fig-website
21
WORKDIR /fig-website
22
23
-RUN apk add --no-cache --virtual .xdebug-build-deps $PHPIZE_DEPS \
+RUN apk add --no-cache --virtual .xdebug-build-deps \
24
+ $PHPIZE_DEPS \
25
+ linux-headers \
26
&& pecl install -o xdebug \
27
&& docker-php-ext-enable xdebug \
&& apk del .xdebug-build-deps \
0 commit comments