Add addons dolideb
This commit is contained in:
16
dolideb/Dockerfile
Normal file
16
dolideb/Dockerfile
Normal 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" ]
|
Reference in New Issue
Block a user