ollamarama-matrix-chatbot/Dockerfile.chatbot

10 lines
167 B
Docker
Raw 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:06:49 +00:00
ENTRYPOINT ["/start.sh"]