Skip to content

Commit 470801e

Browse files
committed
Fix a resolution error (hopefully)
1 parent de52ede commit 470801e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,7 @@ RUN snakemake --configfile test/test_config.yaml --use-conda --jobs 1 --conda-cr
5050
RUN snakemake --configfile test/test_config.yaml --use-conda --jobs 1 bindeps/resistomeanalyzer/resistome bindeps/rarefactionanalyzer/rarefaction bindeps/snpfinder/snpfinder
5151

5252
# this maiden run pulls all databases in, thus finalising the self-contained image
53-
RUN snakemake --configfile test/test_config.yaml --use-conda --jobs 1 && \
53+
# this conda update appears to fix a breaking issue with "PuLP"
54+
RUN conda update -q -y -C -n base -c conda-forge -c bioconda -c defaults --all && \
55+
snakemake --configfile test/test_config.yaml --use-conda --jobs 4 results/hamronized_report.tsv && \
5456
rm -rf results

0 commit comments

Comments
 (0)