-
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.
- Loading branch information
1 parent
c4c5bc2
commit 10fed6b
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,24 @@ | ||
FROM debian:12.7 | ||
|
||
WORKDIR /benchmarks | ||
|
||
COPY . . | ||
|
||
RUN apt update && apt install -y --no-install-recommends \ | ||
tcpdump \ | ||
curl \ | ||
wget \ | ||
unzip \ | ||
samtools \ | ||
minimap2 \ | ||
bcftools \ | ||
python3-pip \ | ||
vim \ | ||
ffmpeg unrtf imagemagick libarchive-tools libncurses5-dev libncursesw5-dev zstd liblzma-dev libbz2-dev zip unzip nodejs tcpdump \ | ||
git | ||
|
||
RUN pip3 install --break-system-packages \ | ||
scikit-learn \ | ||
kaggle | ||
|
||
CMD ["bash"] |