Spaces:
Runtime error
Runtime error
File size: 282 Bytes
b6f2172 fdb26d4 ee4855b b6f2172 ee4855b fdb26d4 ee4855b fdb26d4 ee4855b fdb26d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y curl python3 python3-pip
WORKDIR /app
RUN curl -fsSL https://ollama.ai/install.sh | sh
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY . .
RUN chmod +x start.sh
EXPOSE 7860 11434
CMD ["./start.sh"] |