33
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -40,8 +40,9 @@ RUN mkdir -p ${UV_CACHE_DIR} && chmod -R 777 ${UV_CACHE_DIR}
|
|
40 |
# Copy project files
|
41 |
COPY . /app
|
42 |
|
|
|
43 |
# Install project dependencies and clean git cache
|
44 |
-
RUN uv sync && rm -rf ${UV_CACHE_DIR}/git-v0 || true
|
45 |
|
46 |
# Hugging Face Spaces expects your app to listen on $PORT
|
47 |
EXPOSE 7860
|
|
|
40 |
# Copy project files
|
41 |
COPY . /app
|
42 |
|
43 |
+
|
44 |
# Install project dependencies and clean git cache
|
45 |
+
RUN uv sync && rm -rf ${UV_CACHE_DIR}/git-v0 ${UV_CACHE_DIR}/sdists-v9 || true
|
46 |
|
47 |
# Hugging Face Spaces expects your app to listen on $PORT
|
48 |
EXPOSE 7860
|