Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -9
Dockerfile
CHANGED
@@ -1,25 +1,22 @@
|
|
1 |
-
# Use the official Python 3.9 image as a base image
|
2 |
FROM python:3.9
|
3 |
|
4 |
-
# Create a new user with UID 1000 and switch to that user
|
5 |
RUN useradd -m -u 1000 user
|
6 |
USER user
|
7 |
|
8 |
-
#
|
|
|
|
|
|
|
|
|
9 |
ENV PATH="/home/user/.local/bin:$PATH"
|
10 |
|
11 |
-
# Set the working directory inside the container
|
12 |
WORKDIR /app
|
13 |
|
14 |
-
# Copy the requirements file into the container and install dependencies
|
15 |
COPY --chown=user ./requirements.txt requirements.txt
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
|
18 |
-
# Copy all project files into the container
|
19 |
COPY --chown=user . /app
|
20 |
|
21 |
-
# Expose the port that FastAPI will listen on (Hugging Face Spaces requires port 7860)
|
22 |
EXPOSE 7860
|
23 |
|
24 |
-
|
25 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
3 |
RUN useradd -m -u 1000 user
|
4 |
USER user
|
5 |
|
6 |
+
# Add these lines for huggingface hub cache
|
7 |
+
ENV TRANSFORMERS_CACHE=/app/.cache/huggingface/transformers
|
8 |
+
ENV HF_HOME=/app/.cache/huggingface
|
9 |
+
RUN mkdir -p $TRANSFORMERS_CACHE
|
10 |
+
|
11 |
ENV PATH="/home/user/.local/bin:$PATH"
|
12 |
|
|
|
13 |
WORKDIR /app
|
14 |
|
|
|
15 |
COPY --chown=user ./requirements.txt requirements.txt
|
16 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
|
|
|
18 |
COPY --chown=user . /app
|
19 |
|
|
|
20 |
EXPOSE 7860
|
21 |
|
22 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|