tejani commited on
Commit
7372155
·
verified ·
1 Parent(s): def7413

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,6 +11,9 @@ WORKDIR /app
11
  # Clone the FastSD CPU repository
12
  RUN git clone https://github.com/rupeshs/fastsdcpu.git .
13
 
 
 
 
14
  # Expose port for FastAPI server
15
  EXPOSE 8000
16
 
 
11
  # Clone the FastSD CPU repository
12
  RUN git clone https://github.com/rupeshs/fastsdcpu.git .
13
 
14
+ # Install Python dependencies
15
+ RUN python pip install -r requirements.txt
16
+
17
  # Expose port for FastAPI server
18
  EXPOSE 8000
19