corrected creation of alpine docker image

This commit is contained in:
Stephen Gaito 2020-06-23 05:15:28 +01:00
parent 21bb84c5da
commit 397b88121b
2 changed files with 4 additions and 4 deletions

View File

@ -77,4 +77,4 @@ tar xvf $ALPINE_NAME.tar.gz --strip-comonents=1
ALPINE_INSTALL
chmod a+x $ALPINE_NAME.tar.gz
chmod a+r $ALPINE_NAME.tar.gz

View File

@ -53,10 +53,10 @@ echo "export DOCKER_NAME=\"$DOCKER_NAME\"" >> ../../buildScripts/reSourc
cat > Dockerfile <<DOCKERFILE_HERE_DOC
FROM $DOCKER_FROM
COPY ./$ALPINE_NAME.* /root && \
chmod a+x /root/$ALPINE_NAME.install
COPY ./$ALPINE_NAME.* /root
RUN /root/$ALPINE_NAME.install
RUN chmod a+x /root/$ALPINE_NAME.install && \
/root/$ALPINE_NAME.install
ENTRYPOINT ["$PDF2HTMLEX_PREFIX/bin/pdf2htmlEX"]
DOCKERFILE_HERE_DOC