Merge pull request #587 from rihards-simanovics/rihards-simanovics/issue586

Fix docker containers failing to create SQL backups due to missing OS dependencies
This commit is contained in:
mchev
2026-03-27 08:15:43 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ FROM --platform=$BUILDPLATFORM node AS static_builder
FROM serversideup/php:8.4-fpm-alpine AS base
USER root
RUN apk add --no-cache sqlite
RUN apk add --no-cache bash nano mariadb-client postgresql-client sqlite
RUN install-php-extensions exif
RUN install-php-extensions pgsql
RUN install-php-extensions sqlite3

View File

@@ -5,7 +5,7 @@ FROM --platform=$BUILDPLATFORM node:20 AS static_builder
FROM serversideup/php:8.4-fpm-nginx-alpine AS base
USER root
RUN apk add --no-cache bash nano
RUN apk add --no-cache bash nano mariadb-client postgresql-client sqlite
RUN install-php-extensions exif
RUN install-php-extensions pgsql
RUN install-php-extensions sqlite3