Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -3,9 +3,9 @@ FROM nvidia/cuda:11.8.0-runtime-ubuntu20.04
|
|
3 |
|
4 |
# Set environment variables
|
5 |
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
6 |
-
ENV PATH="/
|
7 |
|
8 |
-
# Install Python and other dependencies
|
9 |
RUN apt-get update && apt-get install -y \
|
10 |
python3 \
|
11 |
python3-pip \
|
@@ -37,4 +37,4 @@ RUN mkdir -p /app/static/uploads /app/static/results && \
|
|
37 |
EXPOSE 7860
|
38 |
|
39 |
# Run the Flask app using uvicorn
|
40 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
3 |
|
4 |
# Set environment variables
|
5 |
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
6 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
7 |
|
8 |
+
# Install Python, pip, and other dependencies
|
9 |
RUN apt-get update && apt-get install -y \
|
10 |
python3 \
|
11 |
python3-pip \
|
|
|
37 |
EXPOSE 7860
|
38 |
|
39 |
# Run the Flask app using uvicorn
|
40 |
+
CMD ["python3", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|