test / Dockerfile
ndhue's picture
initial commit
107c489
Raw
History Blame Contribute Delete
175 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install llama-cpp-python
COPY . .
CMD ["python", "app.py"]