Initial commit for base image

This commit is contained in:
2024-02-26 14:18:23 +01:00
commit 748460b0ba
3 changed files with 58 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM debian:12-slim
RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get -y install libicu-dev libgd-dev libonig-dev unzip
RUN docker-php-ext-install gd intl mbstring mysqli pdo_mysql
RUN apt-get -y purge --auto-remove && apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*