Add Dockerfile for using a php image

This commit is contained in:
Bofh 2022-12-12 03:46:15 +01:00
parent b733893d92
commit a24db6b74e
1 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM php:8.0
RUN apt-get update && apt-get install libpq-dev -y
RUN docker-php-ext-install pgsql
RUN pecl install redis && docker-php-ext-enable redis