Spaces:
Configuration error
Configuration error
Kangarroar
commited on
Commit
•
52a9403
1
Parent(s):
e8d3a39
Update Dockerfile
Browse files- Dockerfile +3 -8
Dockerfile
CHANGED
@@ -9,15 +9,10 @@ COPY ./requirements.txt /app/requirements.txt
|
|
9 |
COPY ./packages.txt /app/packages.txt
|
10 |
RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
|
11 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
12 |
-
RUN
|
13 |
-
RUN
|
14 |
-
RUN which python3
|
15 |
-
RUN which python3-config
|
16 |
-
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
17 |
-
RUN apt-get update && apt-get install -y build-essential
|
18 |
-
RUN pip3 install --no-cache-dir numba==0.56.3
|
19 |
RUN pip install --upgrade pip setuptools wheel
|
20 |
-
RUN
|
21 |
RUN pip install soundfile
|
22 |
|
23 |
WORKDIR /app
|
|
|
9 |
COPY ./packages.txt /app/packages.txt
|
10 |
RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html
|
11 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
12 |
+
RUN pip install --no-cache-dir -r /app/requirements.txt
|
13 |
+
RUN pip install --no-cache-dir numba==0.56.3
|
|
|
|
|
|
|
|
|
|
|
14 |
RUN pip install --upgrade pip setuptools wheel
|
15 |
+
RUN pip install --no-binary :all: pyworld
|
16 |
RUN pip install soundfile
|
17 |
|
18 |
WORKDIR /app
|