mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 03:05:35 +00:00
18 lines
253 B
Docker
18 lines
253 B
Docker
FROM ubuntu:latest
|
|
|
|
WORKDIR /
|
|
|
|
COPY ./dist/swingmusic /swingmusic
|
|
|
|
RUN chmod +x /swingmusic
|
|
|
|
RUN apt update && apt install -y tzdata
|
|
|
|
EXPOSE 1970/tcp
|
|
|
|
VOLUME /music
|
|
|
|
VOLUME /config
|
|
|
|
ENTRYPOINT ["/swingmusic", "--host", "0.0.0.0", "--config", "/config"]
|