ollamarama-matrix-chatbot/Dockerfile.chatbot

10 lines
174 B
Docker
Raw Permalink Normal View History

2024-11-27 19:24:10 +00:00
FROM python:3.10-slim
WORKDIR /app
COPY bin/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bin/ollamarama.py .
2024-11-27 22:18:52 +00:00
CMD ["python", "ollamarama.py"]