my-beets/Dockerfile

14 lines
251 B
Docker
Raw Normal View History

2019-06-28 23:54:39 +00:00
from python:3
COPY requirements.txt ./
RUN pip install -r ./requirements.txt
RUN mkdir /beets
VOLUME /beets
ENV BEETSDIR=/beets
2020-05-22 22:20:11 +00:00
RUN apt-get update && apt-get install -y --no-install-recommends vim
ENV EDITOR=vim
2019-06-28 23:54:39 +00:00
2019-06-29 00:40:54 +00:00
ENTRYPOINT ["/usr/local/bin/beet"]