Setup script didnt do what i needed, do it explicitly
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Ryan Voots 2024-04-23 12:09:15 -04:00
parent 19a2b28fee
commit 72f08a1d1c

View file

@ -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"]