Skip to content

Commit c820f33

Browse files
committed
Update Dockerfile according to the latest release.
1 parent 21be471 commit c820f33

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

Dockerfile

+11-10
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ RUN apt-get -y update --fix-missing \
88
&& apt-get -y update \
99
&& apt-get -y autoremove
1010

11-
# install mono
11+
# install mono
1212
RUN apt-get -y install ca-certificates gnupg
1313
RUN gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
1414
RUN echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list
1515
RUN apt-get -y update
16+
1617
RUN apt-get -y install mono-devel
1718

1819
# install dependencies
@@ -23,15 +24,15 @@ RUN apt-get -y install \
2324
tar \
2425
unzip \
2526
wget \
26-
openjdk-11-jdk \
27-
vim \
28-
dotnet-runtime-6.0
29-
27+
openjdk-17-jdk \
28+
vim \
29+
dotnet-runtime-6.0
30+
3031
# install python packages
3132
RUN pip uninstall easypqp \
3233
&& pip install git+https://github.com/Nesvilab/easypqp.git@master \
3334
&& pip install lxml
34-
35+
3536
# create a directory with 777 permission and set it to the work directory
3637
RUN mkdir /fragpipe_bin
3738
RUN chmod 777 /fragpipe_bin
@@ -40,12 +41,12 @@ WORKDIR /fragpipe_bin
4041
# create directories
4142
RUN mkdir tmp
4243
RUN chmod 777 tmp
43-
44+
4445
# download and install fragPipe
45-
RUN wget https://github.com/Nesvilab/FragPipe/releases/download/21.1/FragPipe-21.1.zip -P fragPipe-21.1
46-
RUN unzip fragPipe-21.1/FragPipe-21.1.zip -d fragPipe-21.1
46+
RUN wget https://github.com/Nesvilab/FragPipe/releases/download/22.0/FragPipe-22.0.zip -P fragPipe-22.0
47+
RUN unzip fragPipe-22.0/FragPipe-22.0.zip -d fragPipe-22.0
4748
RUN chmod -R 777 /fragpipe_bin
4849

4950
# set environment variables
50-
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
51+
ENV JAVA_HOME /usr/lib/jvm/java-17-openjdk-amd64/
5152
RUN export JAVA_HOME

0 commit comments

Comments
 (0)