performance-drupal/drupal_context/Dockerfile
Robert Nasarek 54950f5d1b add git
2022-10-05 12:23:28 +02:00

15 lines
No EOL
326 B
Docker
Executable file

FROM drupal:9.4.7-fpm-alpine
MAINTAINER Robert Nasarek "r.nasarek@gnm.de"
# Install build environment
RUN apk add build-base autoconf vim git
# Install extensions
RUN pecl install apcu uploadprogress
# Enable extensions
RUN docker-php-ext-enable apcu uploadprogress
# Remove build packages
RUN apk del build-base autoconf