28 lines
1.0 KiB
Docker
28 lines
1.0 KiB
Docker
FROM alpine:3.18
|
|
ARG GLPI_VERSION
|
|
|
|
RUN \
|
|
mkdir -p /logs /config /files /marketplace && \
|
|
apk -U upgrade && \
|
|
apk add --no-cache 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-tokenizer php82-xml php82-zip php82-xmlreader php82-xmlwriter && \
|
|
wget -O /usr/local/bin/composer https://getcomposer.org/download/2.5.8/composer.phar && \
|
|
chmod +x /usr/local/bin/composer && \
|
|
ln -s /usr/bin/php82 /usr/bin/php && \
|
|
wget -O - https://github.com/glpi-project/glpi/releases/download/${GLPI_VERSION}/glpi-${GLPI_VERSION}.tgz | tar xz -C /var/www
|
|
|
|
# this are needed if you want to manually install GLPI from git
|
|
# RUN \
|
|
# apk add patch npm gettext
|
|
|
|
COPY rootfs /
|
|
|
|
# config test
|
|
RUN nginx -t
|
|
|
|
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:80/fpm-ping
|
|
|
|
ENTRYPOINT [ "/bin/sh", "/start.sh" ]
|