From 37db204cab452443cb82cc69d63713b9047f676d Mon Sep 17 00:00:00 2001 From: Erki Aas Date: Tue, 5 Sep 2023 20:24:49 +0300 Subject: [PATCH] Fix psysh/artisan tinker --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index ea0f0fb..e7faeb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,14 +41,19 @@ RUN sed -ri -e 's/80/8080/g' /etc/apache2/apache2.conf /etc/apache2/conf-availab RUN mkdir /app RUN chown www-data:www-data /app +ENV XDG_CONFIG_HOME=/app + FROM php-base AS php USER www-data WORKDIR /app +RUN echo d + # Install freescout RUN git clone -b add-s3-support https://github.com/veebkolm/freescout.git /app + # Install oauth plugin RUN git clone https://github.com/bolsunovskyi/freescout-oauth.git /app/Modules/OAuth