Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# 1. Base Image: Python 3.10 trên Debian Bullseye
|
| 2 |
-
FROM
|
| 3 |
|
| 4 |
# Thiết lập biến môi trường
|
| 5 |
ENV PIP_NO_CACHE_DIR=1
|
|
@@ -41,7 +41,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
| 41 |
"phonemizer==3.3.0" \
|
| 42 |
"soundfile==0.13.1"
|
| 43 |
|
| 44 |
-
RUN pip install llama-cpp-python
|
| 45 |
|
| 46 |
# 6. Sao chép mã nguồn
|
| 47 |
COPY --chown=user:user . /app
|
|
|
|
| 1 |
# 1. Base Image: Python 3.10 trên Debian Bullseye
|
| 2 |
+
FROM ubuntu:22.04
|
| 3 |
|
| 4 |
# Thiết lập biến môi trường
|
| 5 |
ENV PIP_NO_CACHE_DIR=1
|
|
|
|
| 41 |
"phonemizer==3.3.0" \
|
| 42 |
"soundfile==0.13.1"
|
| 43 |
|
| 44 |
+
RUN pip install llama-cpp-python
|
| 45 |
|
| 46 |
# 6. Sao chép mã nguồn
|
| 47 |
COPY --chown=user:user . /app
|