mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-06 19:25:34 +00:00
18 lines
320 B
Docker
18 lines
320 B
Docker
LABEL org.opencontainers.image.description "Removes client files compressions to fix plank page on safari"
|
|
|
|
FROM ubuntu:latest
|
|
|
|
WORKDIR /
|
|
|
|
COPY ./dist/swingmusic /swingmusic
|
|
|
|
RUN chmod +x /swingmusic
|
|
|
|
EXPOSE 1970/tcp
|
|
|
|
VOLUME /music
|
|
|
|
VOLUME /config
|
|
|
|
ENTRYPOINT ["/swingmusic", "--host", "0.0.0.0", "--config", "/config"]
|