WebashalarForML commited on
Commit
9b11b37
·
verified ·
1 Parent(s): acd2e71

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -2,12 +2,12 @@ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
5
- # Install dependencies
6
- RUN pip install fastmcp
7
- RUN pip install --no-cache-dir -r requirements.txt
8
  # Copy your code and resources
9
  COPY . .
10
 
 
 
 
11
  # Expose the HF default port
12
  EXPOSE 7860
13
 
 
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  # Copy your code and resources
6
  COPY . .
7
 
8
+ # Install dependencies
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
  # Expose the HF default port
12
  EXPOSE 7860
13