-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker image to newest version
Passing unit test in Docker
- Loading branch information
1 parent
f63edc6
commit 4f1699d
Showing
3 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM python:3.10 | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends build-essential curl libfreetype6-dev libpng-dev libzmq3-dev pkg-config python3 python3-dev rsync software-properties-common unzip && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
RUN pip3 --no-cache-dir install https://files.pythonhosted.org/packages/3f/b2/33372601ed71fb41049642f8f6e1e142215e8b5c3463df434fc8885db278/tensorflow-2.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl | ||
RUN pip3 --no-cache-dir install ipykernel jupyter matplotlib numpy scipy scikit-learn pandas Pillow && \ | ||
python3 -m ipykernel.kernelspec | ||
CMD ["/bin/bash"] | ||
MAINTAINER Camilo Posso <camilo.posso@pnnl.gov> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
denovo: | ||
multi_decode: true | ||
mgf_dir: Kaiko_volume/Kaiko_input_files/mgf_small | ||
mgf_dir: Kaiko_volume/Kaiko_input_files/mgf_large | ||
diamond tally: | ||
diamond_folder: 'Kaiko_volume/Kaiko_stationary_files/diamond' | ||
diamond_folder: Kaiko_volume/Kaiko_stationary_files/diamond-2.0.15 | ||
|
||
|