Skip to content

Commit

Permalink
introduce intl to support natively languages for date formats in the …
Browse files Browse the repository at this point in the history
…module NumericDataTypes
  • Loading branch information
giocomai committed Jan 7, 2023
1 parent d183a8e commit 44afa0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,17 @@ RUN apt-get -qq update && apt-get -qq -y --no-install-recommends install \
wget \
ghostscript \
poppler-utils \
libsodium-dev
libsodium-dev \
libicu-dev

# Install the PHP extensions we need
RUN docker-php-ext-configure gd --with-jpeg=/usr/include/ --with-freetype=/usr/include/
RUN docker-php-ext-install -j$(nproc) iconv pdo pdo_mysql mysqli gd
RUN yes | pecl install imagick && docker-php-ext-enable imagick

RUN docker-php-ext-configure intl
RUN docker-php-ext-install intl

# Add the Omeka-S PHP code
# Latest Omeka version, check: https://omeka.org/s/download/
RUN wget --no-verbose "https://github.com/omeka/omeka-s/releases/download/v3.2.3/omeka-s-3.2.3.zip" -O /var/www/latest_omeka_s.zip
Expand Down

0 comments on commit 44afa0d

Please sign in to comment.