From ed38c8ed649e1293c2de82eb9ae58175414bd8a4 Mon Sep 17 00:00:00 2001 From: stuzer05 Date: Mon, 4 Nov 2024 17:20:43 +0200 Subject: [PATCH] Add docker deployment --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ce33579..f8bae0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,6 +68,9 @@ RUN docker-php-ext-install \ pdo_sqlite \ bcmath +# Configure PHP +RUN cp /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini + # Install Node.js RUN npm install -g n && n 18