MichaelMintIcecream commited on
Commit
631e035
·
verified ·
1 Parent(s): 346bcb7

RTC: wire real-time chunking into /act

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -32,6 +32,9 @@ COPY --chown=user:user requirements.txt .
32
  RUN pip install --no-cache-dir -r requirements.txt hf_transfer
33
 
34
  COPY --chown=user:user molmoact2_server.py .
 
 
 
35
 
36
  RUN mkdir -p /home/user/.cache/huggingface && chown -R user:user /home/user /app
37
  USER user
 
32
  RUN pip install --no-cache-dir -r requirements.txt hf_transfer
33
 
34
  COPY --chown=user:user molmoact2_server.py .
35
+ # RTC guidance core — imported by the server; without this the container
36
+ # dies on `import rtc` at startup.
37
+ COPY --chown=user:user rtc.py .
38
 
39
  RUN mkdir -p /home/user/.cache/huggingface && chown -R user:user /home/user /app
40
  USER user