Euryeth commited on
Commit
1ef40ae
·
verified ·
1 Parent(s): 868d91f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.9
2
 
3
- # Install system dependencies for GGUF models
4
  RUN apt-get update && apt-get install -y build-essential cmake
5
 
6
  # Create cache directory
@@ -13,7 +13,8 @@ COPY . .
13
  # Install Python dependencies
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
- # Expose correct port
17
- EXPOSE 8081
18
 
19
- CMD ["python", "api.py"]
 
 
1
  FROM python:3.9
2
 
3
+ # Install system dependencies
4
  RUN apt-get update && apt-get install -y build-essential cmake
5
 
6
  # Create cache directory
 
13
  # Install Python dependencies
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
+ # Expose correct port (matches space.yaml)
17
+ EXPOSE 8080
18
 
19
+ # Run the unified application
20
+ CMD ["python", "app.py"]