first attempt to fix docker outside ldconfig problem and correct travis script

This commit is contained in:
Stephen Gaito 2020-06-19 09:34:51 +01:00
parent a5dd4865ae
commit d3550d5ea8
2 changed files with 4 additions and 1 deletions

View File

@ -53,7 +53,7 @@ delete_blacklisted
cat > Dockerfile <<DOCKERFILE_HERE_DOC
FROM $DOCKER_FROM
COPY ./ /
RUN ldconfig
RUN /sbin/ldconfig
ENTRYPOINT ["$PDF2HTMLEX_PREFIX/bin/pdf2htmlEX"]
DOCKERFILE_HERE_DOC

View File

@ -5,12 +5,15 @@
set -ev
export UNATTENDED="--assume-yes"
export MAKE_PARALLEL="-j $(nproc)"
export PDF2HTMLEX_BRANCH=$TRAVIS_BRANCH
export PDF2HTMLEX_PREFIX=/usr/local
export PDF2HTMLEX_PATH=/usr/local/bin/pdf2htmlEX
# Ensure all Apt packages are installed with no user interaction
#
export DEBIAN_FRONTEND=noninteractive