Skip to content

Instantly share code, notes, and snippets.

@gh640
Last active May 4, 2021 03:07
Show Gist options
  • Select an option

  • Save gh640/da7bdb754316f7cd6ffa5a15a0042344 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
Author

gh640 commented May 4, 2021

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