anchor
commited on
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -22,14 +22,17 @@ WORKDIR $HOME/app
|
|
22 |
|
23 |
RUN echo "docker start"\
|
24 |
&& whoami \
|
25 |
-
&& which python
|
|
|
26 |
|
27 |
RUN git clone -b deploy --recursive https://github.com/TMElyralab/MuseV.git
|
28 |
RUN mkdir ./MuseV/checkpoints \
|
29 |
&& ls -l ./MuseV
|
30 |
RUN chmod -R 777 /home/user/app/MuseV
|
31 |
|
|
|
32 |
RUN . /opt/conda/etc/profile.d/conda.sh \
|
|
|
33 |
&& conda activate musev \
|
34 |
&& conda env list
|
35 |
|
|
|
22 |
|
23 |
RUN echo "docker start"\
|
24 |
&& whoami \
|
25 |
+
&& which python \
|
26 |
+
&& pwd
|
27 |
|
28 |
RUN git clone -b deploy --recursive https://github.com/TMElyralab/MuseV.git
|
29 |
RUN mkdir ./MuseV/checkpoints \
|
30 |
&& ls -l ./MuseV
|
31 |
RUN chmod -R 777 /home/user/app/MuseV
|
32 |
|
33 |
+
|
34 |
RUN . /opt/conda/etc/profile.d/conda.sh \
|
35 |
+
&& echo "source activate musev" >> ~/.bashrc \
|
36 |
&& conda activate musev \
|
37 |
&& conda env list
|
38 |
|