ollamarama-matrix-chatbot/Dockerfile.chatbot

10 lines
174 B
Docker
Raw Permalink Normal View History

2024-11-27 20:24:10 +01: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 23:18:52 +01:00
CMD ["python", "ollamarama.py"]