Spaces:
Runtime error
Runtime error
File size: 688 Bytes
ba07482 f15297d 6e823b8 a86d88a c8117d1 ba07482 a86d88a ba07482 8993c55 4cbc9e9 2b4a7b8 4cbc9e9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM ollama/ollama as ollama
RUN ollama serve & sleep 5 && ollama pull pxlksr/defog_sqlcoder-7b-2:Q4_K
ENV HOME=/home
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.11 python3-pip python3-distutils
WORKDIR /home
COPY requirements.txt ./
RUN python3.11 -m pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["/bin/sh"]
ENV FLASK_APP=ddl_query_generator.py
CMD ["/usr/bin/python3.11", "flask", "run", "--host=0.0.0.0", "--port=7860"]
# CMD ["/usr/bin/python3.11", "ddl_query_generator.py"]
# flask run ddl_query_generator.py
|