Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- Dockerfile +1 -7
Dockerfile
CHANGED
@@ -26,12 +26,6 @@ COPY . /app
|
|
26 |
RUN --mount=type=cache,target=/root/.cache/uv \
|
27 |
uv sync --frozen --no-dev;
|
28 |
|
29 |
-
# Place executables in the environment at the front of the path
|
30 |
-
ENV PATH=/app/.venv/bin:$PATH
|
31 |
-
|
32 |
USER nonroot
|
33 |
|
34 |
-
|
35 |
-
ENTRYPOINT []
|
36 |
-
|
37 |
-
CMD ["python", "src/vocalizr"]
|
|
|
26 |
RUN --mount=type=cache,target=/root/.cache/uv \
|
27 |
uv sync --frozen --no-dev;
|
28 |
|
|
|
|
|
|
|
29 |
USER nonroot
|
30 |
|
31 |
+
CMD ["uv", "run", "src/vocalizr"]
|
|
|
|
|
|