Skip to content

Commit

Permalink
First successful commit
Browse files Browse the repository at this point in the history
  • Loading branch information
charlenelawdes committed Apr 2, 2024
1 parent 7fcd6dc commit 024402b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
FROM ubuntu:23.10

RUN apt-get update && apt-get install -y \
git \
python3 \
python3-pip \
wget \
curl \
unzip \
htop \
vim

RUN wget http://eddylab.org/software/hmmer/hmmer.tar.gz

RUN tar zxf hmmer.tar.gz

WORKDIR hmmer-3.4

RUN ./configure --prefix /usr/local

RUN make

RUN make install

0 comments on commit 024402b

Please sign in to comment.