my-beets/Dockerfile

14 lines
251 B
Docker
Raw Normal View History

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