performance-drupal/drupal_context/Dockerfile
2022-10-05 12:19:48 +02:00

15 lines
No EOL
322 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
# 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