mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-10-14 16:20:29 -04:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5cbc5e6f7f | ||
|
a3409267f4 | ||
|
b66d8bbfee | ||
|
503569f472 |
30
Dockerfile
30
Dockerfile
@@ -1,6 +1,9 @@
|
|||||||
FROM perl:5
|
FROM debian:jessie
|
||||||
MAINTAINER Freelock john@freelock.com
|
MAINTAINER Freelock john@freelock.com
|
||||||
|
|
||||||
|
# Build time variables
|
||||||
|
ENV LSMB_VERSION 1.3
|
||||||
|
|
||||||
|
|
||||||
# Install Perl, Tex, Starman, psql client, and all dependencies
|
# Install Perl, Tex, Starman, psql client, and all dependencies
|
||||||
RUN DEBIAN_FRONTENT=noninteractive && \
|
RUN DEBIAN_FRONTENT=noninteractive && \
|
||||||
@@ -16,32 +19,20 @@ RUN DEBIAN_FRONTENT=noninteractive && \
|
|||||||
libconfig-inifiles-perl libnamespace-autoclean-perl \
|
libconfig-inifiles-perl libnamespace-autoclean-perl \
|
||||||
libcarp-always-perl libjson-perl \
|
libcarp-always-perl libjson-perl \
|
||||||
libtemplate-plugin-latex-perl texlive-latex-recommended \
|
libtemplate-plugin-latex-perl texlive-latex-recommended \
|
||||||
texlive-latex-base texlive-latex-extra \
|
libnet-tclink-perl \
|
||||||
texlive-xetex \
|
|
||||||
libxml-twig-perl \
|
libxml-twig-perl \
|
||||||
libtex-encode-perl \
|
|
||||||
libdevel-trace-perl \
|
|
||||||
starman \
|
starman \
|
||||||
postgresql-client-9.4 \
|
postgresql-client-9.4 \
|
||||||
ssmtp
|
ssmtp
|
||||||
|
|
||||||
# Build time variables
|
|
||||||
ENV LSMB_VERSION 1.4.30
|
|
||||||
|
|
||||||
# Install LedgerSMB
|
# Install LedgerSMB
|
||||||
|
|
||||||
RUN cd /srv && \
|
RUN cd /srv && \
|
||||||
git clone -b $LSMB_VERSION https://github.com/ledgersmb/LedgerSMB.git ledgersmb
|
git clone https://github.com/ledgersmb/LedgerSMB.git ledgersmb
|
||||||
|
|
||||||
WORKDIR /srv/ledgersmb
|
WORKDIR /srv/ledgersmb
|
||||||
|
|
||||||
|
RUN git checkout $LSMB_VERSION
|
||||||
# 1.4.29+ requirements
|
|
||||||
RUN cpanm --quiet --notest \
|
|
||||||
--with-feature=starman \
|
|
||||||
--with-feature=latex-pdf-ps \
|
|
||||||
--with-feature=openoffice \
|
|
||||||
--installdeps .
|
|
||||||
|
|
||||||
#RUN sed -i \
|
#RUN sed -i \
|
||||||
# -e "s/short_open_tag = Off/short_open_tag = On/g" \
|
# -e "s/short_open_tag = Off/short_open_tag = On/g" \
|
||||||
@@ -66,18 +57,11 @@ ENV POSTGRES_HOST postgres
|
|||||||
COPY start.sh /usr/bin/start.sh
|
COPY start.sh /usr/bin/start.sh
|
||||||
COPY update_ssmtp.sh /usr/bin/update_ssmtp.sh
|
COPY update_ssmtp.sh /usr/bin/update_ssmtp.sh
|
||||||
|
|
||||||
#RUN cpanm \
|
|
||||||
# CGI::Compile
|
|
||||||
|
|
||||||
|
|
||||||
RUN chown www-data /etc/ssmtp /etc/ssmtp/ssmtp.conf && \
|
RUN chown www-data /etc/ssmtp /etc/ssmtp/ssmtp.conf && \
|
||||||
chmod +x /usr/bin/update_ssmtp.sh /usr/bin/start.sh && \
|
chmod +x /usr/bin/update_ssmtp.sh /usr/bin/start.sh && \
|
||||||
mkdir -p /var/www
|
mkdir -p /var/www
|
||||||
|
|
||||||
# Work around an aufs bug related to directory permissions:
|
|
||||||
RUN mkdir -p /tmp && \
|
|
||||||
chmod 1777 /tmp
|
|
||||||
|
|
||||||
# Internal Port Expose
|
# Internal Port Expose
|
||||||
EXPOSE 5000
|
EXPOSE 5000
|
||||||
#USER www-data
|
#USER www-data
|
||||||
|
Reference in New Issue
Block a user