Spaces:
Runtime error
Runtime error
File size: 325 Bytes
ba07482 |
1 2 3 4 5 6 7 8 |
FROM ollama/ollama as ollama
RUN ollama serve & sleep 5 && ollama pull pxlksr/defog_sqlcoder-7b-2:Q4_K
ENV HOME=/home
RUN apt-get update && apt-get install -y python3.12 python3-pip
COPY requirements.txt ./
RUN python3.12 -m pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3.12", "ddl_query_generator.py"] |