First tests with the Docker containers

This commit is contained in:
scriptos
2024-11-27 21:38:00 +01:00
parent 6e0770833e
commit c64ab6a99f
7 changed files with 39 additions and 8 deletions

10
Dockerfile.chatbot Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.10-slim
WORKDIR /app
COPY bin/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bin/ollamarama.py .
CMD ["python", "ollamarama.py"]