10 lines
210 B
Docker
10 lines
210 B
Docker
# Voice Assistant - Using handler-base with audio support
|
|
ARG BASE_TAG=latest
|
|
FROM ghcr.io/billy-davies-2/handler-base:${BASE_TAG}
|
|
|
|
WORKDIR /app
|
|
|
|
COPY voice_assistant.py .
|
|
|
|
CMD ["python", "voice_assistant.py"]
|