Skip to content

Commit ce4d7ee

Browse files
committed
Revert requirement on PSH config for Bundler
1 parent 41e0e26 commit ce4d7ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.platform.app.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ dependencies:
2828
node-sass: '^4.9.4'
2929
php:
3030
composer/composer: '^2'
31-
ruby:
32-
bundler: 2.3.26
3331

3432
hooks:
3533
build: |

docker/php/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.0-cli-alpine
1+
FROM php:8.1-cli-alpine
22

33
RUN apk add --no-cache \
44
bash \
@@ -20,7 +20,9 @@ RUN addgroup -g $GID fig && adduser -D -G fig -u $UID fig \
2020
&& chown fig:fig /fig-website
2121
WORKDIR /fig-website
2222

23-
RUN apk add --no-cache --virtual .xdebug-build-deps $PHPIZE_DEPS \
23+
RUN apk add --no-cache --virtual .xdebug-build-deps \
24+
$PHPIZE_DEPS \
25+
linux-headers \
2426
&& pecl install -o xdebug \
2527
&& docker-php-ext-enable xdebug \
2628
&& apk del .xdebug-build-deps \

0 commit comments

Comments
 (0)