From b981557fdbaee17259fdf3fe5483960336bc7994 Mon Sep 17 00:00:00 2001 From: Dulanic <2948206+Dulanic@users.noreply.github.com> Date: Wed, 14 Nov 2018 12:22:14 -0600 Subject: [PATCH] Update Dockerfile.armhf Add links so twc classic ui button works. --- Dockerfile.armhf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.armhf b/Dockerfile.armhf index be21da6a4..ee3edf00e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,6 +17,10 @@ RUN apt-get update \ && mkdir /opt/transmission-ui/transmission-web-control \ && curl -L https://github.com/ronggang/twc-release/raw/master/src.tar.gz \ | tar -C /opt/transmission-ui/transmission-web-control/ -xzv \ + && ln -s /usr/share/transmission/web/style /opt/transmission-ui/transmission-web-control \ + && ln -s /usr/share/transmission/web/images /opt/transmission-ui/transmission-web-control \ + && ln -s /usr/share/transmission/web/javascript /opt/transmission-ui/transmission-web-control \ + && ln -s /usr/share/transmission/web/index.html /opt/transmission-ui/transmission-web-control \ && apt-get purge git unzip \ && apt-get autoremove --purge \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \