Skip to content

Commit

Permalink
image 1.21 GB now
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Nov 21, 2024
1 parent 462d71d commit 02103a5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ LABEL maintainer="Yasset Perez-Riverol <[email protected]>"
ENV DEBIAN_FRONTEND=noninteractive

# Update package lists and ensure package versions are up to date, Install necessary packages
RUN apt-get update && apt-get upgrade -y && \
apt-get install wget unzip libgomp1 locales -y
RUN apt-get update && apt-get install -y --no-install-recommends \
wget \
unzip \
libgomp1 \
locales && \
rm -rf /var/lib/apt/lists/*

# Configure locale to avoid runtime errors
RUN locale-gen en_US.UTF-8 && \
Expand All @@ -28,7 +32,7 @@ ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8

# Download and install DIA-NN
RUN wget https://github.com/vdemichev/DiaNN/releases/download/1.9.2/diann-1.9.2.Linux.zip -O /tmp/diann-1.9.2.Linux.zip && \
RUN wget --no-check-certificate https://github.com/vdemichev/DiaNN/releases/download/1.9.2/diann-1.9.2.Linux.zip -O /tmp/diann-1.9.2.Linux.zip && \
unzip /tmp/diann-1.9.2.Linux.zip -d /usr/ && \
rm /tmp/diann-1.9.2.Linux.zip

Expand Down

0 comments on commit 02103a5

Please sign in to comment.