From 7e4468884d991806d4da6e3f687b6b16ec514cea Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Fri, 28 Mar 2025 07:25:00 -0400 Subject: [PATCH] removed creation of sqlite db in case they're not using sqlite --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85dd17d..7ba8ad1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,6 +43,3 @@ COPY --chown=www-data:www-data --from=assets /app/public/build /var/www/html/pub # Drop back to the www-data user USER www-data - -# Create the sqlite database -RUN php -r "file_exists('database/database.sqlite') || touch('database/database.sqlite');"