removed creation of sqlite db in case they're not using sqlite

This commit is contained in:
Alex Justesen 2025-03-28 07:25:00 -04:00 committed by Benjamin Nussbaum
parent fd5f1bc48c
commit 58ff12485b

View file

@ -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');"