A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
487B

  1. FROM php:8.0-fpm
  2. RUN apt-get update && apt-get install -y libmagickwand-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
  3. # install imagick
  4. # Version is not officially released https://pecl.php.net/get/imagick but following works for PHP 8
  5. RUN mkdir -p /usr/src/php/ext/imagick; \
  6. curl -fsSL https://github.com/Imagick/imagick/archive/06116aa24b76edaf6b1693198f79e6c295eda8a9.tar.gz | tar xvz -C "/usr/src/php/ext/imagick" --strip 1; \
  7. docker-php-ext-install imagick;