Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -6,8 +6,6 @@ RUN apt-get update && apt-get install -y \
|
|
6 |
build-essential \
|
7 |
ffmpeg \
|
8 |
libsndfile1 \
|
9 |
-
libasound2-dev \
|
10 |
-
portaudio19-dev \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
|
@@ -18,6 +16,7 @@ ENV TORCH_HOME=/app/.cache/torch
|
|
18 |
|
19 |
COPY requirements.txt ./
|
20 |
COPY src/ ./src/
|
|
|
21 |
|
22 |
RUN pip install --no-cache-dir -r requirements.txt
|
23 |
|
|
|
6 |
build-essential \
|
7 |
ffmpeg \
|
8 |
libsndfile1 \
|
|
|
|
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
|
11 |
RUN mkdir -p /app/.cache && chmod -R 777 /app/.cache
|
|
|
16 |
|
17 |
COPY requirements.txt ./
|
18 |
COPY src/ ./src/
|
19 |
+
COPY input.opus ./input.opus
|
20 |
|
21 |
RUN pip install --no-cache-dir -r requirements.txt
|
22 |
|