123456789101112131415161718 |
- FROM php:7.4-cli
- RUN apt-get update
- RUN apt-get install -y git libzip-dev zip
- RUN docker-php-ext-install zip
- # Get latest Composer
- COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
- COPY . /example
- WORKDIR /example
- # install the dependencies
- RUN composer install -o --prefer-dist
- CMD php -S localhost:8000 -t example
|