Skip to content

Instantly share code, notes, and snippets.

@szampardi
Created January 14, 2021 13:28
Show Gist options
  • Save szampardi/cbf7a636c7bb8476eb08380367b3dca0 to your computer and use it in GitHub Desktop.
Save szampardi/cbf7a636c7bb8476eb08380367b3dca0 to your computer and use it in GitHub Desktop.
beets Dockerfile
FROM ubuntu:bionic
SHELL ["/bin/bash", "-xeo", "pipefail", "-c"]
RUN export DEBIAN_FRONTEND=noninteractive; \
apt-get update; \
apt-get dist-upgrade -yqq; \
apt-get install -yqq --no-install-recommends python3-pip python3-setuptools; \
pip3 install --no-cache beets pylast
ENTRYPOINT ["/usr/bin/beet"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment