From df7316375b9e653514a3733b93c72620df64faec Mon Sep 17 00:00:00 2001 From: Young Date: Fri, 27 Dec 2024 12:28:47 -0700 Subject: [PATCH] fixed hardcoded version --- build-files/fastplong/0.2.2/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-files/fastplong/0.2.2/Dockerfile b/build-files/fastplong/0.2.2/Dockerfile index 3440ac6b3..cd5b2d040 100644 --- a/build-files/fastplong/0.2.2/Dockerfile +++ b/build-files/fastplong/0.2.2/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ apt-get autoclean && rm -rf /var/lib/apt/lists/* RUN wget --no-check-certificate -q http://opengene.org/fastplong/fastplong.${FASTPLONG_VER} && \ - mv fastplong.0.2.2 /usr/local/bin/fastplong && \ + mv fastplong.${FASTPLONG_VER} /usr/local/bin/fastplong && \ chmod a+x /usr/local/bin/fastplong # 'CMD' instructions set a default command when the container is run. This is typically 'tool --help.' @@ -54,4 +54,4 @@ RUN fastplong --help RUN wget --no-check-certificate https://zenodo.org/records/10733190/files/df_test_files.tar.gz && \ tar -xvf df_test_files.tar.gz && \ fastplong -i test_files/test.fastq.gz -o filtered.test.fastq.gz && \ - ls filtered.test.fastq.gz \ No newline at end of file + ls filtered.test.fastq.gz