Update Dockerfile
Browse files- 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 |
|