feat: simpler test workflow with configuration

This commit is contained in:
2026-05-18 21:06:30 +02:00
parent ad0d91aee0
commit 0ec084b720
8 changed files with 87 additions and 54 deletions

12
nextflow/Dockerfile.dev Normal file
View File

@@ -0,0 +1,12 @@
FROM eclipse-temurin:17-jre
WORKDIR /opt/nextflow
COPY . /opt/nextflow
RUN chmod +x /opt/nextflow/launch.sh /opt/nextflow/nextflow || true
ENV PATH="/opt/nextflow:${PATH}"
ENV NXF_HOME="/opt/nextflow/.nextflow"
ENTRYPOINT ["/opt/nextflow/launch.sh"]