Rúben Almeida
commited on
Commit
·
288d5ce
1
Parent(s):
221f4db
Add install torch before performing automq pip install -r requirements.txt
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -10,6 +10,9 @@ RUN pip install --upgrade pip
|
|
10 |
|
11 |
RUN pip install -U setuptools wheel
|
12 |
|
|
|
|
|
|
|
13 |
# Copy the requirements file into the container
|
14 |
COPY requirements.txt .
|
15 |
|
|
|
10 |
|
11 |
RUN pip install -U setuptools wheel
|
12 |
|
13 |
+
# Install torch
|
14 |
+
RUN pip install -U torch torchvision torchaudio
|
15 |
+
|
16 |
# Copy the requirements file into the container
|
17 |
COPY requirements.txt .
|
18 |
|