Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
@@ -1,6 +1,12 @@
|
|
1 |
# Base image using Python 3.9
|
2 |
FROM python:3.9
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
# Create a new user to run the app
|
5 |
RUN useradd -m -u 1000 user
|
6 |
USER user
|
@@ -22,4 +28,4 @@ COPY --chown=user . /app
|
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# Command to run the FastAPI app using uvicorn
|
25 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
1 |
# Base image using Python 3.9
|
2 |
FROM python:3.9
|
3 |
|
4 |
+
# Switch to root to install system dependencies
|
5 |
+
USER root
|
6 |
+
|
7 |
+
# Update package list and install ffmpeg
|
8 |
+
RUN apt-get update && apt-get install -y ffmpeg && apt-get clean
|
9 |
+
|
10 |
# Create a new user to run the app
|
11 |
RUN useradd -m -u 1000 user
|
12 |
USER user
|
|
|
28 |
EXPOSE 7860
|
29 |
|
30 |
# Command to run the FastAPI app using uvicorn
|
31 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|