silterra commited on
Commit
a02989c
·
1 Parent(s): c877fd9

Use our other diffdock-pocket image as a base

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -17
Dockerfile CHANGED
@@ -1,20 +1,4 @@
1
- FROM ubuntu:latest
2
-
3
- RUN apt-get update -y
4
- RUN apt-get install -y sudo wget curl nano git tar bzip2 && rm -rf /var/lib/apt/lists/*
5
-
6
- # Build is significantly faster with micromamba, rather than conda
7
- RUN curl -Ls https://micro.mamba.pm/api/micromamba/linux-aarch64/latest | tar -xvj bin/micromamba
8
- RUN ./bin/micromamba shell init -s bash -p ~/micromamba # this writes to your .bashrc file
9
- RUN ./bin/micromamba --version
10
-
11
- # Create conda environment first
12
- # This is time-consuming and don't want to reproduce it often
13
- COPY ./basic_environment.yml /
14
-
15
- RUN ./bin/micromamba env create --file basic_environment.yml && ./bin/micromamba clean -afy
16
- RUN ./bin/micromamba list > spec-file.txt
17
- RUN echo "micromamba activate basic" >> ~/.bashrc
18
 
19
  COPY . /app
20
 
 
1
+ FROM silterra/diffdock-pocket
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  COPY . /app
4