Skip to content

Instantly share code, notes, and snippets.

@gh640
Last active May 4, 2021 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gh640/da7bdb754316f7cd6ffa5a15a0042344 to your computer and use it in GitHub Desktop.
Save gh640/da7bdb754316f7cd6ffa5a15a0042344 to your computer and use it in GitHub Desktop.
Sample: unoconv Docker image based on debian:buster
# DIST can be debian:buster-slim
ARG DIST=debian:buster
FROM $DIST
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends unoconv && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
CMD ["unoconv"]
@gh640
Copy link
Author

gh640 commented May 4, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment