Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -24,6 +24,9 @@ RUN pip install -e .
|
|
24 |
# install dependcies
|
25 |
RUN conda install -y pandas numpy scikit-learn
|
26 |
RUN pip3 install torch torchvision torchaudio
|
|
|
|
|
|
|
27 |
RUN pip install --no-cache-dir -r requirements.txt
|
28 |
|
29 |
# Activate the environment by default when starting the container
|
|
|
24 |
# install dependcies
|
25 |
RUN conda install -y pandas numpy scikit-learn
|
26 |
RUN pip3 install torch torchvision torchaudio
|
27 |
+
|
28 |
+
# Change back
|
29 |
+
WORKDIR /usr/src/app
|
30 |
RUN pip install --no-cache-dir -r requirements.txt
|
31 |
|
32 |
# Activate the environment by default when starting the container
|