13 lines
170 B
Docker
13 lines
170 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 beet
|