We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3698000 commit fb9a0a7Copy full SHA for fb9a0a7
Dockerfile
@@ -58,6 +58,11 @@ RUN if [ -z "$RUN_LIVEKIT" ]; then \
58
# copy the code into the container
59
COPY . .
60
61
+# Run agent.py download-files if RUN_LIVEKIT is set
62
+RUN if [ -n "$RUN_LIVEKIT" ]; then \
63
+ poetry run python livekit_agent.py download-files; \
64
+ fi
65
+
66
ENV FORWARDED_ALLOW_IPS='*'
67
ENV PYTHONUNBUFFERED=1
68
0 commit comments