Skip to content

Commit

Permalink
chore: update.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrvollger committed Oct 20, 2023
1 parent ff5759e commit df41637
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
**/target
**/target/**
target/**
*.code-workspace
Cargo.lock
**/Cargo.lock
tmp*
temp*
dists/**
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ RUN apt-get install -y \
RUN apt-get update

# Install HTSlib
RUN wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2
RUN tar -xjvf htslib-1.18.tar.bz2
WORKDIR /htslib-1.18
RUN ./configure
RUN make
RUN make install
# RUN wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2
# RUN tar -xjvf htslib-1.18.tar.bz2
# WORKDIR /htslib-1.18
# RUN ./configure
# RUN make
# RUN make install

# Install Rust
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
Expand Down
2 changes: 1 addition & 1 deletion NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ mamba install pytorch=1.12 torchvision torchaudio pytorch-cuda=11.6 -c pytorch -
# How to make the docker image using the Dockerfile

```
docker build --progress=plain -f Dockerfile .
cargo clean && docker build --progress=plain -f Dockerfile .
```

0 comments on commit df41637

Please sign in to comment.