Add addons dolideb

This commit is contained in:
ai-dev
2024-08-19 12:12:56 +02:00
commit 8a0083d911
3 changed files with 51 additions and 0 deletions

16
dolideb/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
ARG BUILD_FROM
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Install DoliDeb
RUN apt-get update && \
apt-get install -y dolibarr && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy the run script
COPY run.sh /run.sh
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]