mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-06-05 11:48:08 -04:00
Update for 1.4.29, streamlined install process
This commit is contained in:
parent
beab963859
commit
2add82e070
20
Dockerfile
20
Dockerfile
@ -1,9 +1,6 @@
|
|||||||
FROM perl:5
|
FROM perl:5
|
||||||
MAINTAINER Freelock john@freelock.com
|
MAINTAINER Freelock john@freelock.com
|
||||||
|
|
||||||
# Build time variables
|
|
||||||
ENV LSMB_VERSION 1.4.28
|
|
||||||
|
|
||||||
|
|
||||||
# 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 && \
|
||||||
@ -28,20 +25,23 @@ RUN DEBIAN_FRONTENT=noninteractive && \
|
|||||||
postgresql-client-9.4 \
|
postgresql-client-9.4 \
|
||||||
ssmtp
|
ssmtp
|
||||||
|
|
||||||
<<<<<<< HEAD
|
# Build time variables
|
||||||
=======
|
ENV LSMB_VERSION 1.4.29
|
||||||
# Cpan requirements
|
|
||||||
RUN cpanm -nq \
|
|
||||||
LaTeX::Driver \
|
|
||||||
|
|
||||||
# Install LedgerSMB
|
# Install LedgerSMB
|
||||||
|
|
||||||
RUN cd /srv && \
|
RUN cd /srv && \
|
||||||
git clone https://github.com/ledgersmb/LedgerSMB.git ledgersmb
|
git clone -b $LSMB_VERSION 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" \
|
||||||
|
Loading…
Reference in New Issue
Block a user