Spaces:
Running
Running
Commit
·
4971d57
1
Parent(s):
1e0cf27
update
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -25,8 +25,10 @@ RUN mkdir -p /app/.gcell_data && chown $MAMBA_USER:$MAMBA_USER /app/.gcell_data
|
|
25 |
# set the permission of the directory to 777
|
26 |
RUN mkdir -p /app/.gcell_data/genomes && chown $MAMBA_USER:$MAMBA_USER /app/.gcell_data/genomes
|
27 |
# skip the genome download
|
28 |
-
|
29 |
-
RUN
|
|
|
|
|
30 |
RUN chmod -R 777 /app/.gcell_data
|
31 |
RUN chmod -R 777 /app/matplotlib_cache
|
32 |
RUN chmod -R 777 /app/
|
|
|
25 |
# set the permission of the directory to 777
|
26 |
RUN mkdir -p /app/.gcell_data/genomes && chown $MAMBA_USER:$MAMBA_USER /app/.gcell_data/genomes
|
27 |
# skip the genome download
|
28 |
+
# download https://zenodo.org/records/14615146/files/gcell_data.tar.gz?download=1 extract it and copy it to /app/.gcell_data
|
29 |
+
RUN wget https://zenodo.org/records/14615146/files/gcell_data.tar.gz?download=1 -O /app/gcell_data.tar.gz
|
30 |
+
RUN tar -xzvf /app/gcell_data.tar.gz -C /app/.gcell_data
|
31 |
+
RUN rm /app/gcell_data.tar.gz
|
32 |
RUN chmod -R 777 /app/.gcell_data
|
33 |
RUN chmod -R 777 /app/matplotlib_cache
|
34 |
RUN chmod -R 777 /app/
|