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