From 72f08a1d1c0f7f30476931d77d94e98a615daab5 Mon Sep 17 00:00:00 2001 From: Ryan Voots Date: Tue, 23 Apr 2024 12:09:15 -0400 Subject: [PATCH] Setup script didnt do what i needed, do it explicitly --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4f34681..6fbc846 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,8 @@ RUN python3 script/setup WORKDIR /app COPY requirements.txt . RUN /app/wyoming-openwakeword/.venv/bin/pip install -r requirements.txt +RUN /app/wyoming-openwakeword/.venv/bin/pip install -r /app/wyoming-openwakeword/requirements.txt +RUN /app/wyoming-openwakeword/.venv/bin/pip install /app/wyoming-openwakeword/ ENTRYPOINT ["/app/wyoming-openwakeword/.venv/bin/python", "/app/wyoming-openwakeword/script/run"]