Spaces:
Sleeping
Sleeping
Mimi
commited on
Commit
·
6343aa6
1
Parent(s):
56b0032
as
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -4,9 +4,9 @@ FROM python:3.12
|
|
4 |
RUN useradd -m -u 1000 user
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
COPY --chown=user .
|
8 |
# Install system dependencies and requirements
|
9 |
-
RUN pip install --no-cache-dir -r app/requirements.txt && \
|
10 |
huggingface-cli login --token $HF_TOKEN
|
11 |
|
12 |
USER user
|
|
|
4 |
RUN useradd -m -u 1000 user
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
COPY --chown=user . /app
|
8 |
# Install system dependencies and requirements
|
9 |
+
RUN pip install --no-cache-dir -r /app/requirements.txt && \
|
10 |
huggingface-cli login --token $HF_TOKEN
|
11 |
|
12 |
USER user
|