Spaces:
Sleeping
Sleeping
Add application file
Browse files- Dockerfile +13 -5
Dockerfile
CHANGED
@@ -1,25 +1,33 @@
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
3 |
RUN useradd -m -u 1000 user
|
4 |
USER user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
|
|
|
7 |
WORKDIR /app
|
8 |
|
9 |
-
|
|
|
10 |
|
|
|
11 |
COPY --chown=user ./lib/aicloudlibs-0.1.0-py3-none-any.whl /lib/
|
12 |
-
|
13 |
# COPY --chown=user ./lib/better_profanity-2.0.0-py3-none-any.whl /lib/
|
14 |
-
|
15 |
# COPY --chown=user ./lib/privacy-1.0.9-py3-none-any.whl /lib/
|
16 |
|
|
|
17 |
RUN pip install --no-cache-dir --upgrade -r requirement.txt
|
18 |
|
19 |
-
|
|
|
|
|
|
|
|
|
20 |
|
21 |
# Expose the port (default for Hugging Face is 7860)
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# CMD to run the FastAPI app with Uvicorn
|
25 |
-
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
1 |
FROM python:3.9
|
2 |
|
3 |
+
# Create a user to run the app
|
4 |
RUN useradd -m -u 1000 user
|
5 |
USER user
|
6 |
ENV PATH="/home/user/.local/bin:$PATH"
|
7 |
|
8 |
+
# Set the working directory to /app
|
9 |
WORKDIR /app
|
10 |
|
11 |
+
# Copy the requirements.txt file
|
12 |
+
COPY --chown=user ./requirements.txt requirement.txt
|
13 |
|
14 |
+
# Copy the necessary libraries (if required)
|
15 |
COPY --chown=user ./lib/aicloudlibs-0.1.0-py3-none-any.whl /lib/
|
16 |
+
# You can add the rest of your .whl files as needed
|
17 |
# COPY --chown=user ./lib/better_profanity-2.0.0-py3-none-any.whl /lib/
|
|
|
18 |
# COPY --chown=user ./lib/privacy-1.0.9-py3-none-any.whl /lib/
|
19 |
|
20 |
+
# Install dependencies
|
21 |
RUN pip install --no-cache-dir --upgrade -r requirement.txt
|
22 |
|
23 |
+
# Copy the src folder into /app/src in the container
|
24 |
+
COPY --chown=user ./src /app/src
|
25 |
+
|
26 |
+
# Set PYTHONPATH to include /app/src so Python can find llm_explain
|
27 |
+
ENV PYTHONPATH="/app/src:$PYTHONPATH"
|
28 |
|
29 |
# Expose the port (default for Hugging Face is 7860)
|
30 |
EXPOSE 7860
|
31 |
|
32 |
# CMD to run the FastAPI app with Uvicorn
|
33 |
+
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]
|