-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Dockerfile #43
base: main
Are you sure you want to change the base?
Conversation
Enable the intl extension to use the Filament package with Laravel.
@@ -47,6 +47,8 @@ RUN apk update && apk upgrade && apk add --no-cache \ | |||
php${PHP}-pecl-redis \ | |||
php${PHP}-pecl-swoole \ | |||
php${PHP}-pecl-xdebug \ | |||
icu-dev \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Precisa instalar explícito? Geralmente os pacotes já instalam suas dependências, por exemplo: https://pkgs.alpinelinux.org/package/edge/community/x86_64/php82-intl vai em Depends, já tem a icu-libs
.
@@ -47,6 +47,8 @@ RUN apk update && apk upgrade && apk add --no-cache \ | |||
php${PHP}-pecl-redis \ | |||
php${PHP}-pecl-swoole \ | |||
php${PHP}-pecl-xdebug \ | |||
icu-dev \ | |||
php${PHP}-intl \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deixa em ordem alfabética.
Enable the intl extension to use the Filament package with Laravel.