13 lines
189 B
Docker
13 lines
189 B
Docker
from python:3
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install -r ./requirements.txt
|
|
|
|
RUN mkdir /beets
|
|
VOLUME /beets
|
|
ENV BEETSDIR=/beets
|
|
|
|
COPY ./config.yaml ./
|
|
|
|
ENTRYPOINT ["/usr/local/bin/beet"]
|