Spaces:
Paused
Paused
Upload Dockerfile
Browse files- Dockerfile +18 -0
Dockerfile
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Python 3.10.9 image
|
2 |
+
FROM python:3.10.9
|
3 |
+
|
4 |
+
# Copy the current directory contents into the container at .
|
5 |
+
COPY . .
|
6 |
+
|
7 |
+
# Install OS Libs
|
8 |
+
RUN apt-get update \
|
9 |
+
&& apt-get -y install ffmpeg
|
10 |
+
|
11 |
+
# Set the working directory to /
|
12 |
+
WORKDIR /
|
13 |
+
|
14 |
+
# Install requirements.txt
|
15 |
+
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
16 |
+
|
17 |
+
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
18 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|