Spaces:
Runtime error
Runtime error
add git checkout to avoid ignore caching
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -9,7 +9,9 @@ RUN poetry config virtualenvs.create false
|
|
| 9 |
# Install dependencies
|
| 10 |
WORKDIR /app
|
| 11 |
|
| 12 |
-
RUN git clone https://github.com/fishaudio/fish-diffusion.git
|
|
|
|
|
|
|
| 13 |
|
| 14 |
WORKDIR /app/fish-diffusion
|
| 15 |
RUN poetry install
|
|
|
|
| 9 |
# Install dependencies
|
| 10 |
WORKDIR /app
|
| 11 |
|
| 12 |
+
RUN git clone https://github.com/fishaudio/fish-diffusion.git && \
|
| 13 |
+
cd fish-diffusion && \
|
| 14 |
+
git checkout 720b4c26bd0ebe4ba8edd442fd1b531e7f8b8a5f
|
| 15 |
|
| 16 |
WORKDIR /app/fish-diffusion
|
| 17 |
RUN poetry install
|