Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build_manifest.csv
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ micom,0.37.0
sylph,0.6.1a
dvc,0.0.1
fmhfunprofiler,20250930
nextflow-dev,0.0.2
10 changes: 10 additions & 0 deletions nextflow-dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM eclipse-temurin:25

RUN apt-get update && apt-get install curl build-essential zip wget python3 pip gradle bash git unzip python3-dev -y
#RUN /bin/bash -c "source /root/.sdkman/bin/sdkman-init.sh; sdk version; sdk install java 17.0.10-tem ; sdk install gradle 9.2.1 ; which gradle"
#ENV PATH="/root/.sdkman/candidates/java/current/bin/:$PATH"
ENV PIP_BREAK_SYSTEM_PACKAGES=1
RUN java -version && \
pip install nf-core && \
curl -s https://get.nextflow.io | bash
RUN mv nextflow /usr/local/bin/
Loading