Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +10 -3
Dockerfile
CHANGED
@@ -6,10 +6,17 @@ WORKDIR /app
|
|
6 |
|
7 |
ADD . /app
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
RUN apt-get update && apt-get install -y libgomp1
|
10 |
|
11 |
RUN pip install -r requirements.txt
|
12 |
|
13 |
-
|
14 |
-
|
15 |
-
CMD ["python", "lr_api.py"]
|
|
|
6 |
|
7 |
ADD . /app
|
8 |
|
9 |
+
# Set up a new user named "user" with user ID 1000
|
10 |
+
RUN useradd -m -u 1000 user
|
11 |
+
# Switch to the "user" user
|
12 |
+
USER user
|
13 |
+
# Set home to the user's home directory
|
14 |
+
ENV HOME=/home/user \\
|
15 |
+
PATH=/home/user/.local/bin:$PATH
|
16 |
+
|
17 |
RUN apt-get update && apt-get install -y libgomp1
|
18 |
|
19 |
RUN pip install -r requirements.txt
|
20 |
|
21 |
+
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
22 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|