Created
January 14, 2021 13:28
-
-
Save szampardi/cbf7a636c7bb8476eb08380367b3dca0 to your computer and use it in GitHub Desktop.
beets Dockerfile
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 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