From 9bf005668b21a1600997153e85745959c2b2eaed Mon Sep 17 00:00:00 2001 From: Mungai Njoroge Date: Tue, 30 Jan 2024 08:55:20 +0300 Subject: [PATCH] Install tzdata in Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63dcdca..93a42e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,12 @@ 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"] \ No newline at end of file +ENTRYPOINT ["/swingmusic", "--host", "0.0.0.0", "--config", "/config"]