From 4c94f3a0878280f81d0644a41c4306b5017688a7 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 28 Feb 2022 19:31:50 +0100 Subject: [PATCH] remove impressum from public image --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 68ec638..68bf13b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ ARG DATE ENV PHPVER=7.4 ENV IP_PATCH=2722da0c4749b726bfb87ac56ba055940c2d2fc7 -ENV IMPRESSUM_PATCH=dbb47aa7ef59f83e9f88d71992b928b618b4bc03 RUN set -xe;\ apt-install git unzip php${PHPVER}-curl php${PHPVER}-zip php${PHPVER}-bcmath php${PHPVER}-intl php${PHPVER}-mbstring php${PHPVER}-xml composer &&\ @@ -13,7 +12,6 @@ RUN set -xe;\ git clone https://github.com/pixelfed/pixelfed.git www &&\ cd www &&\ curl -L https://github.com/hnrd/pixelfed/commit/${IP_PATCH}.patch | git apply &&\ - curl -L https://github.com/hnrd/pixelfed/commit/${IMPRESSUM_PATCH}.patch | git apply &&\ composer require beyondcode/laravel-self-diagnosis &&\ composer install --prefer-dist --no-interaction --no-ansi --no-dev --optimize-autoloader &&\ ln -s public html &&\