Update Dockerfile
Browse files- Dockerfile +11 -10
Dockerfile
CHANGED
@@ -1,20 +1,21 @@
|
|
1 |
-
FROM python:3.
|
|
|
|
|
|
|
|
|
2 |
|
3 |
RUN git clone https://github.com/2noise/ChatTTS.git /app
|
4 |
|
|
|
|
|
5 |
RUN useradd -m -u 1000 user
|
6 |
-
USER user
|
7 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
8 |
-
|
9 |
-
RUN chmod -R 777 /app
|
10 |
-
|
11 |
WORKDIR /app
|
12 |
|
13 |
-
COPY --chown=user ./requirements.txt requirements.txt
|
14 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
-
|
16 |
COPY --chown=user . /app
|
17 |
-
#
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
CMD ["python", "examples/web/webui.py", "--server_name", "0.0.0.0", "--server_port", "7860"]
|
|
|
1 |
+
FROM python:3.12
|
2 |
+
|
3 |
+
#RUN apt update
|
4 |
+
# RUN apt install git
|
5 |
+
# RUN apt install ffmpeg portaudio19-dev libgtk-3-dev python3-wxgtk4.0 -y
|
6 |
|
7 |
RUN git clone https://github.com/2noise/ChatTTS.git /app
|
8 |
|
9 |
+
# The two following lines are requirements for the Dev Mode to be functional
|
10 |
+
# Learn more about the Dev Mode at https://huggingface.co/dev-mode-explorers
|
11 |
RUN useradd -m -u 1000 user
|
|
|
|
|
|
|
|
|
|
|
12 |
WORKDIR /app
|
13 |
|
|
|
|
|
|
|
14 |
COPY --chown=user . /app
|
15 |
+
# COPY --chown=user requirements.txt requirements.txt
|
16 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
17 |
|
18 |
+
RUN chmod -R 777 /app
|
19 |
|
20 |
+
#CMD ["fastapi", "dev", "examples/api/main.py", "--host", "0.0.0.0", "--port", "7860"]
|
21 |
CMD ["python", "examples/web/webui.py", "--server_name", "0.0.0.0", "--server_port", "7860"]
|