From eea849fffbab541ad2ccc431be01b54eb379a05a Mon Sep 17 00:00:00 2001 From: chris Date: Thu, 28 May 2020 18:22:58 +0200 Subject: [PATCH] fix git apply --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index af3520f..6edb899 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN set -xe;\ cd /var && rm -rf www &&\ git clone https://github.com/pixelfed/pixelfed.git www &&\ cd www &&\ - git apply <(curl -L https://github.com/hnrd/pixelfed/commit/6e822b67c50dfb6cc6dc352ce80bf3326b06cca9.patch) &&\ + curl -L https://github.com/hnrd/pixelfed/commit/6e822b67c50dfb6cc6dc352ce80bf3326b06cca9.patch | git apply &&\ php /composer.phar install --prefer-dist --no-interaction --no-ansi --optimize-autoloader &&\ ln -s public html &&\ chown -R www-data:www-data /var/www &&\