This repository has been archived by the owner on Jun 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed PHP 7.4 support due to missing oniguruma library (required by P…
…HP mbstring) (#16) * Update Dockerfile * Update CHANGELOG.md
- Loading branch information
1 parent
55b81e8
commit d06b689
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM composer:1.9.0 | ||
FROM composer:1.9.3 | ||
|
||
LABEL repository="https://github.com/ubient/laravel-vapor-action" | ||
LABEL homepage="https://github.com/ubient/laravel-vapor-action" | ||
LABEL maintainer="Claudio Dekker <[email protected]>" | ||
|
||
# Install required extenstions for laravel | ||
# https://laravel.com/docs/6.x#server-requirements | ||
RUN apk add libxml2-dev && \ | ||
RUN apk add oniguruma-dev libxml2-dev && \ | ||
docker-php-ext-install bcmath xml tokenizer mbstring | ||
|
||
# Install Vapor + Prestissimo (parallel/quicker composer install) | ||
|