Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ FROM php:8.3.11-cli-alpine3.20

WORKDIR /usr/local/src/

RUN apk add --no-cache --virtual .build-deps \
$PHPIZE_DEPS \
linux-headers \
openssl-dev \
brotli-dev \
&& pecl install swoole \
&& docker-php-ext-enable swoole \
&& apk del .build-deps \
&& apk add --no-cache libstdc++ brotli-libs

COPY --from=composer /usr/local/src/vendor /usr/local/src/vendor
COPY . /usr/local/src/

Expand Down
Loading
Loading