Skip to content

Commit f6fd49b

Browse files
committed
update base PHP version to 8.4 and remove swoole extension from installation
1 parent 3087e60 commit f6fd49b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1.7-labs
2-
FROM php:8.3-alpine as base
2+
FROM php:8.4-alpine as base
33
WORKDIR /app
44

55
ENV COMPOSER_MEMORY_LIMIT=-1
@@ -11,7 +11,7 @@ ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/relea
1111

1212
RUN apk update \
1313
&& apk add --no-cache curl git unzip openssl tar ca-certificates \
14-
&& install-php-extensions gd bcmath pdo_mysql zip intl opcache pcntl redis swoole @composer \
14+
&& install-php-extensions gd bcmath pdo_mysql zip intl opcache pcntl redis @composer \
1515
&& rm -rf /var/cache/apk/*
1616

1717
RUN chown -R www-data:www-data /app

0 commit comments

Comments
 (0)