add openviking Dockerfile

This commit is contained in:
hermes-bot
2026-06-04 14:10:39 +00:00
parent 567fc2c180
commit 1ef1ceb384

11
AI/openviking/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
RUN pip install openviking --upgrade --force-reinstall
RUN openviking-server init
EXPOSE 8000
CMD ["openviking-server", "run", "--host", "0.0.0.0", "--port", "8000"]