From 86be519a185273ab7435152d0aee9b25443a050b Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Tue, 13 Feb 2024 16:15:49 +0100 Subject: [PATCH] Update Dockerfile, fix #173 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aec7e32..8f25770 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apk add --no-cache openjdk8-jre php7 php7-json php7-openssl python3 py-lxml && rm -rf /ocr-fileformat \ && apk del git make wget gcc libc-dev # Disable POST upload limit -sed -i 's,post_max_size = 8M,post_max_size = 0,' /etc/php7/php.ini +RUN sed -i 's,post_max_size = 8M,post_max_size = 0,' /etc/php7/php.ini VOLUME /data WORKDIR /data CMD php7 -S $(hostname -i):8080 -t /ocr-fileformat-web