mirror of
https://github.com/IrosTheBeggar/mStream.git
synced 2025-10-27 07:31:02 +00:00
13 lines
188 B
Docker
13 lines
188 B
Docker
FROM node:latest
|
|
|
|
ADD . /opt/mstream/
|
|
RUN cd /opt/mstream && npm install --only=production && npm link
|
|
|
|
EXPOSE 3000
|
|
|
|
VOLUME ["/music", "/beets.db"]
|
|
|
|
WORKDIR /music
|
|
|
|
ENTRYPOINT ["mstream"]
|