Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
FROM python:3.9
|
2 |
|
|
|
|
|
3 |
RUN useradd -m -u 1000 user
|
4 |
USER user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
|
7 |
-
RUN git clone https://github.com/2noise/ChatTTS.git /app
|
8 |
-
|
9 |
WORKDIR /app
|
10 |
|
11 |
COPY --chown=user ./requirements.txt requirements.txt
|
|
|
1 |
FROM python:3.9
|
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 |
WORKDIR /app
|
10 |
|
11 |
COPY --chown=user ./requirements.txt requirements.txt
|