Created
July 3, 2020 23:41
-
-
Save koduki/6b08d42b23c8249ed5194c5d80cd3598 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian | |
RUN apt-get update && \ | |
apt-get install -y --no-install-recommends && \ | |
unoconv \ | |
imagemagick \ | |
xpdf && \ | |
apt-get -y --purge autoremove && \ | |
rm -rf /var/lib/apt/lists/* | |
#WORKDIR /app | |
#COPY run.sh /app/run.sh | |
#CMD ["./run.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment