dolibarr CRM

This commit is contained in:
2022-03-12 13:04:55 +01:00
parent 057be561c5
commit a69ebc9779

View File

@@ -1,12 +1,16 @@
FROM arm64/php:7.3-fpm
FROM debian/buster-slim
# Install the packages we need
# Install the PHP extensions we need
# see https://wiki.dolibarr.org/index.php/Dependencies_and_external_libraries
# Prepare folders
ENV DEBIAN_FRONTEND noninteractive
RUN sed -i 's@deb.debian.org@apt-cache.lan/deb.debian.org@g' /etc/apt/sources.list && \
sed -i 's@security.debian.org@apt-cache.lan/security.debian.org@g' /etc/apt/sources.list
RUN set -ex; \
apt-get update -q; \
apt-get install -y --no-install-recommends \
php-fpm \
bzip2 \
default-mysql-client \
cron \