1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 13:18:21 +01:00

fix: keep libzip-dev, use postgresql-client instead

Signed-off-by: rare-magma <rare-magma@posteo.eu>
This commit is contained in:
rare-magma 2024-06-04 01:23:55 +02:00
parent 97d16e6c72
commit ee762ed8e0
No known key found for this signature in database

View File

@ -1,10 +1,10 @@
FROM docker.io/library/php:8.3-fpm-alpine
# Install package and PHP dependencies
RUN apk add --no-cache mariadb-client postgresql postgresql-dev sqlite zip libzip-dev; \
RUN apk add --no-cache mariadb-client postgresql-client postgresql-dev sqlite zip libzip-dev; \
docker-php-ext-configure zip; \
docker-php-ext-install bcmath pdo_mysql pdo_pgsql zip ftp; \
mkdir /ssl-certs; \
docker-php-source delete; \
rm -f /usr/src/php.tar.xz /usr/src/php.tar.xz.asc; \
apk del --no-cache postgresql-dev libzip-dev
apk del --no-cache postgresql-dev