Skip to content

Commit f3f92d2

Browse files
committed
Force all commands to run inside docker
1 parent 3b13215 commit f3f92d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/PangolinHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ private static File runUsingDocker(File outputDir, Logger log, File consensusFas
259259
writer.println("\t-e USERID=$UID \\");
260260
writer.println("\t-w /work \\");
261261
writer.println("\tghcr.io/bimberlabinternal/pangolin:latest \\");
262-
writer.println("\tpangolin --update && pangolin '/work/" + consensusFasta.getName() + "'");
262+
writer.println("\t/bin/bash -c \"pangolin --update && pangolin '/work/" + consensusFasta.getName() + "'\"");
263263
writer.println("");
264264
writer.println("echo 'Bash script complete'");
265265
writer.println("");

0 commit comments

Comments
 (0)