We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1cdd5d commit bad8d42Copy full SHA for bad8d42
.docker/app/Dockerfile
@@ -2,10 +2,14 @@ ARG NEXTCLOUD_VERSION=31-fpm
2
3
FROM nextcloud:${NEXTCLOUD_VERSION}
4
5
+# Instala dependências do ocrmypdf
6
+RUN apt-get update && \
7
+ apt-get install -y --no-install-recommends \
8
+ ocrmypdf
9
+
10
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
11
RUN chmod uga+x /usr/local/bin/install-php-extensions && sync \
12
&& install-php-extensions \
13
bz2
14
-
15
COPY config/php.ini /usr/local/etc/php/conf.d/
0 commit comments