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

Commit

Permalink
Add missing libxml2-dev (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiodekker authored Nov 19, 2019
1 parent 09f1800 commit eff77a8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ LABEL com.github.actions.color="blue"

# Install required extenstions for laravel
# https://laravel.com/docs/6.x#server-requirements
RUN docker-php-ext-install bcmath xml tokenizer mbstring
RUN apk add libxml2-dev && \
docker-php-ext-install bcmath xml tokenizer mbstring

# Install Vapor + Prestissimo (parallel/quicker composer install)
RUN set -xe && \
composer global require hirak/prestissimo && \
composer global require laravel/vapor-cli && \
composer clear-cache
composer global require hirak/prestissimo && \
composer global require laravel/vapor-cli && \
composer clear-cache

# Install Node.js (needed for Vapor's NPM Build)
RUN apk add --update nodejs npm
Expand Down

0 comments on commit eff77a8

Please sign in to comment.