Files
ollama-plus/tools/Dockerfile
T

11 lines
147 B
Docker
Raw Normal View History

2025-09-11 17:28:09 -04:00
FROM python:3.13.7-alpine3.22
WORKDIR /usr/app
COPY . .
ENV PYTHONUNBUFFERED=1
RUN pip install -r requirements.txt
CMD [ "python", "main.py" ]