mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-10-15 08:40:29 -04:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2d4bb886f8 | ||
|
8e3f80f65f | ||
|
cd29bd895f | ||
|
42e6eb783e | ||
|
09cf2e16b7 | ||
|
2a5dff2dd7 | ||
|
e2bf781058 | ||
|
1148c219ec | ||
|
e5c6072505 |
78
Dockerfile
78
Dockerfile
@@ -1,50 +1,56 @@
|
|||||||
FROM perl:5
|
FROM debian:jessie
|
||||||
MAINTAINER Freelock john@freelock.com
|
MAINTAINER Freelock john@freelock.com
|
||||||
|
|
||||||
# Use postgres repository to get newer pg_dump and postgres client
|
RUN echo -n "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" >> /etc/apt/apt.conf
|
||||||
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
echo "deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main 9.6" |tee /etc/apt/sources.list.d/postgres.list
|
|
||||||
|
|
||||||
# Install Perl, Tex, Starman, psql client, and all dependencies
|
# Install Perl, Tex, Starman, psql client, and all dependencies
|
||||||
RUN DEBIAN_FRONTENT=noninteractive && \
|
RUN apt-get update && apt-get dist-upgrade -y && apt-get -y install \
|
||||||
apt-get update && apt-get dist-upgrade -y && apt-get -y install \
|
libcgi-emulate-psgi-perl libcgi-simple-perl libconfig-inifiles-perl \
|
||||||
libcgi-emulate-psgi-perl libcgi-simple-perl libconfig-inifiles-perl \
|
libdbd-pg-perl libdbi-perl libdatetime-perl \
|
||||||
libdbd-pg-perl libdbi-perl libdatetime-perl \
|
libdatetime-format-strptime-perl libdigest-md5-perl \
|
||||||
libdatetime-format-strptime-perl libdigest-md5-perl \
|
libfile-mimeinfo-perl libjson-xs-perl libjson-perl \
|
||||||
libfile-mimeinfo-perl libjson-xs-perl libjson-perl \
|
liblocale-maketext-perl liblocale-maketext-lexicon-perl \
|
||||||
liblocale-maketext-perl liblocale-maketext-lexicon-perl \
|
liblog-log4perl-perl libmime-base64-perl libmime-lite-perl \
|
||||||
liblog-log4perl-perl libmime-base64-perl libmime-lite-perl \
|
libmath-bigint-gmp-perl libmoose-perl libnumber-format-perl \
|
||||||
libmath-bigint-gmp-perl libmoose-perl libnumber-format-perl \
|
libpgobject-perl libpgobject-simple-perl libpgobject-simple-role-perl \
|
||||||
libpgobject-perl libpgobject-simple-perl libpgobject-simple-role-perl \
|
libpgobject-util-dbmethod-perl libplack-perl libtemplate-perl \
|
||||||
libpgobject-util-dbmethod-perl libplack-perl libtemplate-perl \
|
libnamespace-autoclean-perl \
|
||||||
libnamespace-autoclean-perl \
|
libtemplate-plugin-latex-perl libtex-encode-perl \
|
||||||
libtemplate-plugin-latex-perl libtex-encode-perl \
|
libmoosex-nonmoose-perl \
|
||||||
libmoosex-nonmoose-perl \
|
texlive-latex-recommended \
|
||||||
texlive-latex-recommended \
|
texlive-xetex \
|
||||||
texlive-xetex \
|
starman \
|
||||||
starman \
|
libopenoffice-oodoc-perl \
|
||||||
libopenoffice-oodoc-perl \
|
postgresql-client \
|
||||||
postgresql-client-9.6 \
|
ssmtp \
|
||||||
lpr \
|
lsb-release
|
||||||
ssmtp
|
|
||||||
|
|
||||||
# Build time variables
|
# Build time variables
|
||||||
ENV LSMB_VERSION 1.5.6
|
ENV LSMB_VERSION 1.5.8
|
||||||
|
|
||||||
# Install LedgerSMB
|
# Install LedgerSMB
|
||||||
RUN cd /srv && \
|
RUN apt-get -y install git cpanminus make gcc libperl-dev && \
|
||||||
curl -Lo ledgersmb-$LSMB_VERSION.tar.gz "http://downloads.sourceforge.net/project/ledger-smb/Releases/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fledger-smb%2Ffiles%2FReleases%2F$LSMB_VERSION%2F&ts=1483124209&use_mirror=superb-sea2" && \
|
cd /srv && \
|
||||||
tar -xvzf ledgersmb-$LSMB_VERSION.tar.gz
|
curl -Lo ledgersmb-$LSMB_VERSION.tar.gz "https://github.com/ledgersmb/LedgerSMB/releases/download/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz" && \
|
||||||
# https://sourceforge.net/projects/ledger-smb/files/Releases/$LSMB_VERSION/ledgersmb-$LSMB_VERSION.tar.gz/download && \
|
tar -xvzf ledgersmb-$LSMB_VERSION.tar.gz && \
|
||||||
|
rm -f ledgersmb-$LSMB_VERSION.tar.gz && \
|
||||||
|
cd ledgersmb && \
|
||||||
|
cpanm --quiet --notest \
|
||||||
|
--with-feature=starman \
|
||||||
|
--with-feature=latex-pdf-ps \
|
||||||
|
--with-feature=openoffice \
|
||||||
|
--installdeps . && \
|
||||||
|
apt-get purge -y git cpanminus make gcc libperl-dev && \
|
||||||
|
apt-get autoremove -y && \
|
||||||
|
apt-get autoclean && \
|
||||||
|
rm -rf ~/.cpanm/
|
||||||
|
|
||||||
|
|
||||||
WORKDIR /srv/ledgersmb
|
WORKDIR /srv/ledgersmb
|
||||||
|
|
||||||
# 1.5 requirements
|
# master requirements
|
||||||
RUN cpanm --quiet --notest \
|
|
||||||
--with-feature=starman \
|
|
||||||
--with-feature=latex-pdf-ps \
|
|
||||||
--with-feature=openoffice \
|
|
||||||
--installdeps .
|
|
||||||
|
|
||||||
# Configure outgoing mail to use host, other run time variable defaults
|
# Configure outgoing mail to use host, other run time variable defaults
|
||||||
|
|
||||||
|
5
start.sh
5
start.sh
@@ -35,4 +35,7 @@ done ;
|
|||||||
echo "Selected PERL5LIB=$PERL5LIB";
|
echo "Selected PERL5LIB=$PERL5LIB";
|
||||||
|
|
||||||
# start ledgersmb
|
# start ledgersmb
|
||||||
exec starman --port 5762 tools/starman.psgi
|
# --preload-app allows application initialization to kill the entire
|
||||||
|
# starman instance (instead of just the worker, which will immediately
|
||||||
|
# get restarted); it also has a positive effect on memory use
|
||||||
|
exec starman --port 5762 --preload-app tools/starman.psgi
|
||||||
|
Reference in New Issue
Block a user