diff --git a/Dockerfile b/Dockerfile index 4da0fbb..a925937 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,8 @@ RUN if [ "$USE_APT_PROXY" = "Y" ]; then \ rm /etc/apt/apt.conf.d/01proxy; \ fi +RUN rm -Rf /app/install + RUN echo $BUILD_MODE > /app/conf/build_mode.txt FROM scratch @@ -213,10 +215,10 @@ COPY app/bin/get-version-ext.sh /app/bin/ COPY app/bin/read-file.sh /app/bin/ COPY app/bin/get-value.sh /app/bin/ COPY app/bin/config-builder.sh /app/bin/ -RUN chmod u+x /app/bin/*.sh +RUN chmod +x /app/bin/*.sh COPY app/bin/get-tidal-credentials.py /app/bin/ -RUN chmod u+x /app/bin/get-tidal-credentials.py +RUN chmod +x /app/bin/get-tidal-credentials.py COPY README.md /app/doc diff --git a/doc/change-history.md b/doc/change-history.md index fb137e9..922cac5 100644 --- a/doc/change-history.md +++ b/doc/change-history.md @@ -2,6 +2,7 @@ Change Date|Major Changes ---|--- +2024-03-27|Fix executable shell files for user mode (see issue [#390](https://github.com/GioF71/upmpdcli-docker/issues/390))) 2024-03-24|Add support for upnp log file and level (see issue [#383](https://github.com/GioF71/upmpdcli-docker/issues/383))) 2024-03-05|Review default naming (see issue [#381](https://github.com/GioF71/upmpdcli-docker/issues/381))) 2024-03-05|Automatically set upnpip instead of upnpiface (see issue [#379](https://github.com/GioF71/upmpdcli-docker/issues/379)))