Compare commits

...

3 Commits

Author SHA1 Message Date
Paolo Asperti 590d05784b
updated php
continuous-integration/drone/push Build is passing Details
2023-05-16 11:17:49 +02:00
Paolo Asperti b879275933
updated alpine release 2023-05-16 11:16:16 +02:00
Paolo Asperti d4cd79e714
added .dockerignore 2023-05-16 11:15:44 +02:00
4 changed files with 8 additions and 2 deletions

6
.dockerignore Normal file
View File

@ -0,0 +1,6 @@
db/
glpi/
docker-compose.yaml
.drone.yaml
.env
.gitignore

View File

@ -1,10 +1,10 @@
FROM alpine:3.17
FROM alpine:3.18
ARG GLPI_VERSION=10.0.7
RUN \
mkdir -p /logs /config /files /marketplace && \
apk -U upgrade && \
apk add curl nginx php81 php81-bz2 php81-ctype php81-curl php81-dom php81-exif php81-fileinfo php81-fpm php81-gd php81-iconv php81-intl php81-ldap php81-mysqli php81-opcache php81-openssl php81-pecl-apcu php81-pecl-redis php81-phar php81-session php81-simplexml php81-sodium php81-xml php81-zip && \
apk add curl nginx php82 php82-bz2 php82-ctype php82-curl php82-dom php82-exif php82-fileinfo php82-fpm php82-gd php82-iconv php82-intl php82-ldap php82-mysqli php82-opcache php82-openssl php82-pecl-apcu php82-pecl-redis php82-phar php82-session php82-simplexml php82-sodium php82-xml php82-zip && \
wget -O - https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/glpi-${GLPI_VERSION}.tgz | tar xz -C /var/www
COPY rootfs /