Container
Some checks failed
release-tag / release-image (push) Failing after 1m59s

This commit is contained in:
2025-11-07 09:31:46 +01:00
parent 9dbea6b49b
commit bb90422b4a
2 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM php:8.4-apache
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libpq-dev \
&& docker-php-ext-install pdo_pgsql \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*