Skip to content
This repository has been archived by the owner on Jun 11, 2021. It is now read-only.

Commit

Permalink
Fixed PHP 7.4 support due to missing oniguruma library (required by P…
Browse files Browse the repository at this point in the history
…HP mbstring) (#16)

* Update Dockerfile

* Update CHANGELOG.md
  • Loading branch information
claudiodekker authored Jun 15, 2020
1 parent 55b81e8 commit d06b689
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ All notable changes to `ubient/laravel-vapor-action` will be documented in this
## 1.2.0 - 2020-04-29
- Added automatic Docker Image building, tagging & publishing.
- Added Docker Image method (allowing for the most performant build times so far!)

## 1.2.1 - 2020-06-15
- Fixed PHP 7.4 support due to missing oniguruma library (required by PHP mbstring)
4 changes: 2 additions & 2 deletions Dockerfile
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)
Expand Down

0 comments on commit d06b689

Please sign in to comment.