Preparations for Docker image created

This commit is contained in:
scriptos
2024-11-27 20:24:10 +01:00
parent a7188214e9
commit 6e0770833e
5 changed files with 110 additions and 133 deletions

10
Dockerfile 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"]