From 8c058d5006b77a65eeb41ab3eed1d3cef370a3f1 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Thu, 25 Nov 2021 16:06:46 +0100 Subject: [PATCH] Fixed typo in dockerfile with apt-purge instead of apt purge Signed-off-by: Louis Vallat --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbd0e11..481b30c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,5 +8,5 @@ RUN apt-get update \ && service apache2 restart \ && mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" \ && docker-php-ext-install -j$(nproc) opcache \ - && apt-purge -y wget $(apt-mark showauto) \ + && apt purge -y wget $(apt-mark showauto) \ && rm -rf /var/lib/apt/lists/*