File size: 438 Bytes
31a867e
 
a985dc8
 
 
31a867e
 
 
 
 
 
 
a985dc8
31a867e
 
a985dc8
 
 
31a867e
 
 
a985dc8
9f3c43a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM python:3.10

# Update the package list and install zstd
RUN apt-get update && apt-get install -y zstd

# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | sh

# Install Python requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Copy everything
COPY . .

# Make the start script executable
RUN chmod +x start.sh

# Expose port
EXPOSE 7860

# Run the startup script
CMD ["./start.sh"]