Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
ARG PHP=8.1
ARG PHP=8.3
FROM php:${PHP}-cli-alpine

RUN apk update && apk add \
zip libzip-dev icu-dev git
RUN apk update && apk add --no-cache \
zip libzip-dev icu-dev git \
linux-headers autoconf build-base

RUN docker-php-ext-install zip intl

RUN apk add --no-cache linux-headers autoconf build-base
RUN docker-php-ext-install zip intl sockets
RUN pecl install xdebug
RUN docker-php-ext-enable xdebug
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
Expand Down