Spaces:
Sleeping
Sleeping
Yarik
commited on
Commit
·
9b7c903
1
Parent(s):
cb2076d
requirements.txt update
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
@@ -6,10 +6,6 @@ RUN apt-get update && apt-get install -y libsndfile1 espeak-ng
|
|
6 |
# Set the working directory
|
7 |
WORKDIR /app
|
8 |
|
9 |
-
# Create cache directory with write permissions
|
10 |
-
RUN mkdir -p /app/.cache && chmod 777 /app/.cache
|
11 |
-
|
12 |
-
|
13 |
# Устанавливаем зависимости
|
14 |
COPY requirements.txt /app/requirements.txt
|
15 |
RUN apt-get update && apt-get install -y git ffmpeg && \
|
@@ -23,6 +19,10 @@ ENV HF_HOME=/app/.cache
|
|
23 |
|
24 |
# Create cache directory and set permissions
|
25 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
|
|
|
|
|
|
|
|
26 |
|
27 |
|
28 |
# Expose the port
|
|
|
6 |
# Set the working directory
|
7 |
WORKDIR /app
|
8 |
|
|
|
|
|
|
|
|
|
9 |
# Устанавливаем зависимости
|
10 |
COPY requirements.txt /app/requirements.txt
|
11 |
RUN apt-get update && apt-get install -y git ffmpeg && \
|
|
|
19 |
|
20 |
# Create cache directory and set permissions
|
21 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
22 |
+
RUN mkdir -p /app/stanza_resources && chmod -R 777 /app/stanza_resources
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
|
27 |
|
28 |
# Expose the port
|