swingmusic/Dockerfile
2024-01-30 08:55:20 +03:00

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"]