From 82708bd5df97685da0811bf29a9b4a16da46fd53 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 19 Jan 2025 22:19:00 +0000 Subject: [PATCH] Fixing path to cert file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 264b7537..38a56fc2 100755 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN pip install openwrt-luci-rpc asusrouter asyncio aiohttp graphene flask netif && bash -c "find ${INSTALL_DIR} -type f \( -name '*.sh' -o -name '*.py' -o -name 'speedtest-cli' \) -exec chmod 750 {} \;" # Append Iliadbox certificate to aiofreepybox -RUN cat install/freebox_certificate.pem >> /opt/venv/lib/python3.12/site-packages/aiofreepybox/freebox_certificates.pem +RUN cat ${INSTALL_DIR}/install/freebox_certificate.pem >> /opt/venv/lib/python3.12/site-packages/aiofreepybox/freebox_certificates.pem # second stage FROM alpine:3.20 AS runner